Interface SnapshotGatheringStatusGrouping

All Superinterfaces:
org.opendaylight.yangtools.yang.binding.BindingContract<org.opendaylight.yangtools.yang.binding.DataContainer>, org.opendaylight.yangtools.yang.binding.BindingObject, org.opendaylight.yangtools.yang.binding.DataContainer, org.opendaylight.yangtools.yang.binding.DataObject
All Known Subinterfaces:
FlowCapableStatisticsGatheringStatus

@Generated("mdsal-binding-generator") public interface SnapshotGatheringStatusGrouping extends org.opendaylight.yangtools.yang.binding.DataObject
Basic info about snapshot gathering - timestamps of begin, end.

This class represents the following YANG schema fragment defined in module flow-node-inventory

 grouping snapshot-gathering-status-grouping {
   container snapshot-gathering-status-start {
     leaf begin {
       type yang:date-and-time;
     }
   }
   container snapshot-gathering-status-end {
     leaf end {
       type yang:date-and-time;
     }
     leaf succeeded {
       type boolean;
     }
   }
 }
 
  • Field Details

    • QNAME

      static final @NonNull org.opendaylight.yangtools.yang.common.QName QNAME
      YANG identifier of the statement represented by this class.
  • Method Details

    • implementedInterface

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

      SnapshotGatheringStatusStart getSnapshotGatheringStatusStart()
      Return snapshotGatheringStatusStart, or null if it is not present.
           
               gathering start mark
           
       
      Returns:
      SnapshotGatheringStatusStart snapshotGatheringStatusStart, or null if it is not present.
    • getSnapshotGatheringStatusEnd

      SnapshotGatheringStatusEnd getSnapshotGatheringStatusEnd()
      Return snapshotGatheringStatusEnd, or null if it is not present.
           
               gathering end mark + result
           
       
      Returns:
      SnapshotGatheringStatusEnd snapshotGatheringStatusEnd, or null if it is not present.