Interface LastUpdated
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<LastUpdated>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.ChildOf<MappingDatabase>,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject
public interface LastUpdated extends org.opendaylight.yangtools.yang.binding.ChildOf<MappingDatabase>, org.opendaylight.yangtools.yang.binding.Augmentable<LastUpdated>
This class represents the following YANG schema fragment defined in module odl-mappingservice
container last-updated { config false; leaf last-updated { type int64; } }The schema path to identify an instance is odl-mappingservice/mapping-database/last-updatedTo create instances of this class use
LastUpdatedBuilder.- See Also:
LastUpdatedBuilder
-
-
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 LonggetLastUpdated()Last database update timestamp (in milliseconds since January 1, 1970, 00:00:00 GMT)default Class<LastUpdated>implementedInterface()
-
-
-
Method Detail
-
implementedInterface
default Class<LastUpdated> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject
-
getLastUpdated
@Nullable Long getLastUpdated()
Last database update timestamp (in milliseconds since January 1, 1970, 00:00:00 GMT)- Returns:
java.lang.LonglastUpdated, ornullif not present
-
-