Interface AclDropCounts

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

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

    This class represents the following YANG schema fragment defined in module acl-live-statistics

     grouping acl-drop-counts {
       leaf drop-count {
         type uint64;
       }
       leaf invalid-drop-count {
         type uint64;
       }
       leaf anti-spoof-drop-count {
         type uint64;
       }
       leaf total-drop-count {
         type uint64;
       }
     }
     
    The schema path to identify an instance is acl-live-statistics/acl-drop-counts
    • Field Detail

      • QNAME

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

      • implementedInterface

        java.lang.Class<? extends AclDropCounts> implementedInterface()
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataContainer
        Specified by:
        implementedInterface in interface org.opendaylight.yangtools.yang.binding.DataObject
      • getDropCount

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getDropCount()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 dropCount, or null if not present
      • getInvalidDropCount

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getInvalidDropCount()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 invalidDropCount, or null if not present
      • getAntiSpoofDropCount

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getAntiSpoofDropCount()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 antiSpoofDropCount, or null if not present
      • getTotalDropCount

        @Nullable org.opendaylight.yangtools.yang.common.Uint64 getTotalDropCount()
        Returns:
        org.opendaylight.yangtools.yang.common.Uint64 totalDropCount, or null if not present