f15a2bdc63c946c1aecaee7be573bf0390c9d9c5
[oam.git] / Address.java
1 package org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.ipendpoint;
2 import org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.$YangModuleInfoImpl;
3 import org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.IpEndPoint;
4 import org.opendaylight.yangtools.yang.binding.ChoiceIn;
5 import org.opendaylight.yangtools.yang.common.QName;
6
7 /**
8  *
9  * <p>
10  * This class represents the following YANG schema fragment defined in module <b>_3gpp-common-yang-types</b>
11  * <pre>
12  * choice address {
13  *   case ipv4Address {
14  *     leaf ipv4Address {
15  *       type inet:ipv4-address;
16  *     }
17  *   }
18  *   case ipv6Address {
19  *     leaf ipv6Address {
20  *       type inet:ipv6-address;
21  *     }
22  *   }
23  *   case ipv6Prefix {
24  *     leaf ipv6Prefix {
25  *       type inet:ipv6-prefix;
26  *     }
27  *   }
28  * }
29  * </pre>The schema path to identify an instance is
30  * <i>_3gpp-common-yang-types/ipEndPoint/address</i>
31  *
32  */
33 public interface Address
34     extends
35     ChoiceIn<IpEndPoint>
36 {
37
38
39
40     public static final QName QNAME = $YangModuleInfoImpl.qnameOf("address");
41
42
43 }
44