BUG-865: deprecate internal implementation classes
[yangtools.git] / yang / yang-model-util / src / main / java / org / opendaylight / yangtools / yang / model / util / DerivedLeafrefType.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.model.util;
9
10 import org.opendaylight.yangtools.yang.model.api.RevisionAwareXPath;
11 import org.opendaylight.yangtools.yang.model.api.type.LeafrefTypeDefinition;
12
13 /**
14  * @deprecated Deprecated {@link DerivedType} subclass.
15  */
16 @Deprecated
17 class DerivedLeafrefType extends DerivedType<LeafrefTypeDefinition> implements LeafrefTypeDefinition {
18
19     public DerivedLeafrefType(final ExtendedType definition) {
20         super(LeafrefTypeDefinition.class, definition);
21     }
22
23     @Override
24     LeafrefTypeDefinition createDerived(final ExtendedType base) {
25         return new DerivedLeafrefType(base);
26     }
27
28     @Override
29     public RevisionAwareXPath getPathStatement() {
30         return getBaseType().getPathStatement();
31     }
32 }