Class DiskBackupResult

java.lang.Object
org.apache.geode.management.DiskBackupResult

public class DiskBackupResult extends Object
Composite data type used to distribute the results of a disk backup operation.
Since:
GemFire 7.0
  • 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 written
      offline - whether the backup was successful
  • Method Details

    • getDiskDirectory

      public String 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.