Bug 2766: Fixed parsing and serializing XPath Instance Identifiers
[yangtools.git] / yang / yang-data-impl / src / main / java / org / opendaylight / yangtools / yang / data / impl / schema / transform / base / AugmentationSchemaProxy.java
1 /*
2  * Copyright (c) 2013 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.transform.base;
9
10 import java.util.Set;
11 import org.opendaylight.yangtools.yang.model.api.AugmentationSchema;
12 import org.opendaylight.yangtools.yang.model.api.DataSchemaNode;
13 import org.opendaylight.yangtools.yang.model.util.EffectiveAugmentationSchema;
14
15 /**
16  * Proxy for AugmentationSchema. Child node schemas are replaced with actual schemas from parent.
17  *
18  * @deprecated Replaced with {@link EffectiveAugmentationSchema}.
19  */
20 @Deprecated
21 public final class AugmentationSchemaProxy extends EffectiveAugmentationSchema {
22
23
24     public AugmentationSchemaProxy(final AugmentationSchema augmentSchema, final Set<DataSchemaNode> realChildSchemas) {
25        super(augmentSchema,realChildSchemas);
26     }
27
28 }