Interface HwvtepAclAttributes

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

    public interface HwvtepAclAttributes
    extends org.opendaylight.yangtools.yang.binding.DataObject
    ACL attributes

    This class represents the following YANG schema fragment defined in module hwvtep

     grouping hwvtep-acl-attributes {
       leaf acl-name {
         type string;
       }
       leaf acl-uuid {
         type yang:uuid;
       }
       list acl-entries {
         uses hwvtep-acl-entry-attributes;
       }
       list acl-fault-status {
         config false;
         key acl-fault-status-key;
         leaf acl-fault-status-key {
           type string;
         }
         leaf acl-fault-status-value {
           type hwvtep-acl-ref;
         }
       }
     }
     
    The schema path to identify an instance is hwvtep/hwvtep-acl-attributes
    • Field Detail

      • QNAME

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

      • implementedInterface

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

        @Nullable String getAclName()
        Name of the ACL
        Returns:
        java.lang.String aclName, or null if not present
      • getAclUuid

        @Nullable org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid getAclUuid()
        The unique identifier of the acl
        Returns:
        org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.Uuid aclUuid, or null if not present
      • getAclEntries

        @Nullable List<AclEntries> getAclEntries()
        Returns:
        java.util.List aclEntries, or null if not present
      • nonnullAclEntries

        default @NonNull List<AclEntries> nonnullAclEntries()
        Returns:
        java.util.List aclEntries, or an empty list if it is not present
      • getAclFaultStatus

        @Nullable List<AclFaultStatus> getAclFaultStatus()
        Returns:
        java.util.List aclFaultStatus, or null if not present
      • nonnullAclFaultStatus

        default @NonNull List<AclFaultStatus> nonnullAclFaultStatus()
        Returns:
        java.util.List aclFaultStatus, or an empty list if it is not present