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; /** * *

* This class represents the following YANG schema fragment defined in module _3gpp-common-yang-types *

 * 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;
 *   }
 * }
 * 
The schema path to identify an instance is * _3gpp-common-yang-types/ipEndPoint * */ public interface IpEndPoint extends DataObject { public static final QName QNAME = $YangModuleInfoImpl.qnameOf("ipEndPoint"); /** * @return org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.ipendpoint.Address address, or null if not present */ @Nullable Address getAddress(); /** * @return org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.TTransportProtocol transport, or null if not present */ @Nullable TTransportProtocol getTransport(); /** * @return java.lang.Integer port, or null if not present */ @Nullable Integer getPort(); }