Package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.endpoints
Interface AddressFamily
- All Superinterfaces:
org.opendaylight.yangtools.binding.BindingContract<org.opendaylight.yangtools.binding.DataContainer>,org.opendaylight.yangtools.binding.ChoiceIn<Endpoints>,org.opendaylight.yangtools.binding.DataContainer
- All Known Subinterfaces:
Ipv4Case,Ipv6Case,P2mpIpv4Case,P2mpIpv6Case
@Generated("mdsal-binding-generator")
public interface AddressFamily
extends org.opendaylight.yangtools.binding.ChoiceIn<Endpoints>
This class represents the following YANG schema fragment defined in module pcep-types
choice address-family {
case ipv4-case {
container ipv4 {
uses endpoints-ipv4-source;
leaf destination-ipv4-address {
type inet:ipv4-address-no-zone;
}
}
}
case ipv6-case {
container ipv6 {
uses endpoints-ipv6-source;
leaf destination-ipv6-address {
type inet:ipv6-address-no-zone;
}
}
}
case p2mp-ipv4-case {
container p2mp-ipv4 {
uses p2mp-leaves-leaf;
uses endpoints-ipv4-source;
uses ipv4-destinations;
}
}
case p2mp-ipv6-case {
container p2mp-ipv6 {
uses p2mp-leaves-leaf;
uses endpoints-ipv6-source;
uses ipv6-destinations;
}
}
}
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final @NonNull org.opendaylight.yangtools.yang.common.QNameYANG identifier of the statement represented by this class. -
Method Summary
Methods inherited from interface org.opendaylight.yangtools.binding.BindingContract
implementedInterface
-
Field Details
-
QNAME
static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAMEYANG identifier of the statement represented by this class.
-