Interface BackupDatastoreInput
-
- All Superinterfaces:
org.opendaylight.yangtools.yang.binding.Augmentable<BackupDatastoreInput>,org.opendaylight.yangtools.yang.binding.BindingObject,org.opendaylight.yangtools.yang.binding.DataContainer,org.opendaylight.yangtools.yang.binding.DataObject,org.opendaylight.yangtools.yang.binding.RpcInput
public interface BackupDatastoreInput extends org.opendaylight.yangtools.yang.binding.RpcInput, org.opendaylight.yangtools.yang.binding.Augmentable<BackupDatastoreInput>
This class represents the following YANG schema fragment defined in module cluster-admin
input input { leaf file-path { type string; } }The schema path to identify an instance is cluster-admin/backup-datastore/inputTo create instances of this class use
BackupDatastoreInputBuilder.- See Also:
BackupDatastoreInputBuilder
-
-
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 StringgetFilePath()The path and name of the file in which to store the backup.default Class<BackupDatastoreInput>implementedInterface()
-
-
-
Method Detail
-
implementedInterface
default Class<BackupDatastoreInput> implementedInterface()
- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataContainer- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.DataObject- Specified by:
implementedInterfacein interfaceorg.opendaylight.yangtools.yang.binding.RpcInput
-
getFilePath
@Nullable String getFilePath()
The path and name of the file in which to store the backup.- Returns:
java.lang.StringfilePath, ornullif not present
-
-