aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/IpEndPoint.java
blob: 4853cc3315a527046c8c490fc34221a18f147550 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731;
import java.lang.Integer;
import org.eclipse.jdt.annotation.Nullable;
import org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.ipendpoint.Address;
import org.opendaylight.yangtools.yang.binding.DataObject;
import org.opendaylight.yangtools.yang.common.QName;

/**
 *
 * <p>
 * This class represents the following YANG schema fragment defined in module <b>_3gpp-common-yang-types</b>
 * <pre>
 * grouping ipEndPoint {
 *   choice address {
 *     case ipv4Address {
 *       leaf ipv4Address {
 *         type inet:ipv4-address;
 *       }
 *     }
 *     case ipv6Address {
 *       leaf ipv6Address {
 *         type inet:ipv6-address;
 *       }
 *     }
 *     case ipv6Prefix {
 *       leaf ipv6Prefix {
 *         type inet:ipv6-prefix;
 *       }
 *     }
 *   }
 *   leaf transport {
 *     type t_TransportProtocol;
 *   }
 *   leaf port {
 *     type uint16;
 *   }
 * }
 * </pre>The schema path to identify an instance is
 * <i>_3gpp-common-yang-types/ipEndPoint</i>
 *
 */
public interface IpEndPoint
    extends
    DataObject
{



    public static final QName QNAME = $YangModuleInfoImpl.qnameOf("ipEndPoint");

    /**
     * @return <code>org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.ipendpoint.Address</code> <code>address</code>, or <code>null</code> if not present
     */
    @Nullable Address getAddress();
    
    /**
     * @return <code>org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.TTransportProtocol</code> <code>transport</code>, or <code>null</code> if not present
     */
    @Nullable TTransportProtocol getTransport();
    
    /**
     * @return <code>java.lang.Integer</code> <code>port</code>, or <code>null</code> if not present
     */
    @Nullable Integer getPort();

}