mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noel Rouvignac
08.00.2015 a23343e9e4e0b555b1bcfa99a7455e0e28117a3d
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/BackupDescriptor.java
@@ -23,7 +23,6 @@
 *
 *      Copyright 2008 Sun Microsystems, Inc.
 */
package org.opends.guitools.controlpanel.datamodel;
import java.io.File;
@@ -31,26 +30,18 @@
import org.opends.server.types.BackupInfo;
/**
 * Class used to describe a backup.
 */
/** Class used to describe a backup. */
public class BackupDescriptor
{
  /**
   * The different types of backups.
   *
   */
  /** The different types of backups. */
  public enum Type
  {
    /**
     * Full backup.
     */
    /** Full backup. */
    FULL,
    /**
     * Incremental backup.
     */
    /** Incremental backup. */
    INCREMENTAL
  };
  }
  private Type type;
  private Date creationDate;
  private File path;