Package org.apache.geode.management
Class DiskBackupResult
java.lang.Object
org.apache.geode.management.DiskBackupResult
Composite data type used to distribute the results of a disk backup operation.
- Since:
- GemFire 7.0
-
Constructor Summary
ConstructorsConstructorDescriptionDiskBackupResult(String diskDirectory, boolean offline) This constructor is to be used by internal JMX framework only. -
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the directory where the files for this backup were written.booleanReturns whether the backup was successful.
-
Constructor Details
-
DiskBackupResult
@ConstructorProperties({"diskDirectory","offilne"}) public DiskBackupResult(String diskDirectory, boolean offline) This constructor is to be used by internal JMX framework only. User should not try to create an instance of this class.- Parameters:
diskDirectory- the name of the directory where the files for this backup were writtenoffline- whether the backup was successful
-
-
Method Details
-
getDiskDirectory
Returns the name of the directory where the files for this backup were written.- Returns:
- the name of the directory where the files for this backup were written
-
isOffilne
public boolean isOffilne()Returns whether the backup was successful.- Returns:
- True if the backup was successful, false otherwise.
-