BUG-865: remove JSONCodec.needQuotes()
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / nodes / CloneableChildrenMap.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.data.impl.schema.nodes;
9
10 import com.google.common.annotations.Beta;
11 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier.PathArgument;
12 import org.opendaylight.yangtools.yang.data.api.schema.DataContainerChild;
13
14 /**
15  * Interface implemented by maps which allow efficient duplication. This interface IS NOT part of the
16  * general API contract and is <strong>an internal implementation detail</strong>. It is subject to
17  * change and/or removal at any time.
18  *
19  * @deprecated Deprecated during Beryllium release cycle, scheduled for removal.
20  */
21 @Beta
22 @Deprecated
23 public abstract class CloneableChildrenMap implements CloneableMap<PathArgument, DataContainerChild<? extends PathArgument, ?>> {
24     CloneableChildrenMap() {
25         // Hidden to prevent outside instantiation
26     }
27 }