Package org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.acl.live.statistics.rev161129.acl.stats.output
Interface AclPortStats
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<AclPortStats>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<AclStatsOutput>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject,org.opendaylight.yangtools.yang.binding.Identifiable<AclPortStatsKey>
public interface AclPortStats extends org.opendaylight.yangtools.yang.binding.ChildOf<AclStatsOutput>, org.opendaylight.yangtools.yang.binding.Augmentable<AclPortStats>, org.opendaylight.yangtools.yang.binding.Identifiable<AclPortStatsKey>
This class represents the following YANG schema fragment defined in module acl-live-statistics
list acl-port-stats { key interface-name; leaf interface-name { type leafref { path /if:interfaces/if:interface/if:name; } } list acl-drop-stats { max-elements 2; leaf direction { type direction; } container packets { uses acl-drop-counts; } container bytes { uses acl-drop-counts; } } container error { leaf error-message { type string; } } }The schema path to identify an instance is acl-live-statistics/acl-stats-output/acl-port-statsTo create instances of this class use
AclPortStatsBuilder.- See Also:
AclPortStatsBuilder,AclPortStatsKey
-
-
Field Summary
Fields Modifier and Type Field Description static @NonNull org.opendaylight.yangtools.yang.common.QNameQNAME
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @Nullable java.util.List<AclDropStats>getAclDropStats()@Nullable ErrorgetError()@Nullable java.lang.StringgetInterfaceName()default java.lang.Class<AclPortStats>implementedInterface()AclPortStatsKeykey()default @NonNull java.util.List<AclDropStats>nonnullAclDropStats()
-
-
-
Method Detail
-
implementedInterface
default java.lang.Class<AclPortStats> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getInterfaceName
@Nullable java.lang.String getInterfaceName()
- Returns:
java.lang.StringinterfaceName, ornullif not present
-
getAclDropStats
@Nullable java.util.List<AclDropStats> getAclDropStats()
- Returns:
java.util.ListaclDropStats, ornullif not present
-
nonnullAclDropStats
default @NonNull java.util.List<AclDropStats> nonnullAclDropStats()
- Returns:
java.util.ListaclDropStats, or an empty list if it is not present
-
getError
@Nullable Error getError()
- Returns:
org.opendaylight.yang.gen.v1.urn.opendaylight.netvirt.acl.live.statistics.rev161129.acl.stats.output.acl.port.stats.Errorerror, ornullif not present
-
key
AclPortStatsKey key()
- Specified by:
keyin interfaceorg.opendaylight.yangtools.yang.binding.Identifiable<AclPortStatsKey>
-
-