BUG-6533: add immutable implementations of yang.model.api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / type / IdentityrefTypeDefinition.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.model.api.type;
9
10 import org.opendaylight.yangtools.yang.model.api.IdentitySchemaNode;
11 import org.opendaylight.yangtools.yang.model.api.TypeDefinition;
12
13 /**
14  * Contains method for getting data from <code>identityref</code> built-in YANG
15  * type.
16  */
17 public interface IdentityrefTypeDefinition extends TypeDefinition<IdentityrefTypeDefinition> {
18     /**
19      * Returns identity to which the instance of this type refers.
20      *
21      * @return identity which is specified with the <code>identity</code> YANG
22      *         statement
23      */
24     IdentitySchemaNode getIdentity();
25 }