Interface SfcAttributes

  • All Superinterfaces:
    org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
    All Known Subinterfaces:
    Neutron

    public interface SfcAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject

    This class represents the following YANG schema fragment defined in module neutron-sfc

     grouping sfc-attributes {
       container port-chains {
         list port-chain {
           key uuid;
           uses attrs:base-attributes;
           uses port-chain-attributes;
         }
       }
       container port-pair-groups {
         list port-pair-group {
           key uuid;
           uses attrs:base-attributes;
           uses port-pair-group-attributes;
         }
       }
       container port-pairs {
         list port-pair {
           key uuid;
           uses attrs:base-attributes;
           uses port-pair-attributes;
         }
       }
     }
     
    The schema path to identify an instance is neutron-sfc/sfc-attributes
    • Field Detail

      • QNAME

        static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
    • Method Detail

      • implementedInterface

        Class<? extends SfcAttributes> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getPortChains

        PortChains getPortChains()
        List of Service Function Paths (Port Chain) created by OpenStack SFC
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.sfc.rev160511.sfc.attributes.PortChains portChains, or null if not present
      • getPortPairGroups

        PortPairGroups getPortPairGroups()
        List of group of Service Functions (Port Pair Groups) created by OpenStack SFC
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.sfc.rev160511.sfc.attributes.PortPairGroups portPairGroups, or null if not present
      • getPortPairs

        PortPairs getPortPairs()
        List of Service Function (Port Pair) created by OpenStack
        Returns:
        org.opendaylight.yang.gen.v1.urn.opendaylight.neutron.sfc.rev160511.sfc.attributes.PortPairs portPairs, or null if not present