1 6 7 package com.sun.enterprise.config.backup.status; 8 9 import com.sun.enterprise.config.backup.pluggable.EnvironmentFactory; 10 import com.sun.enterprise.config.backup.BackupException; 11 import com.sun.enterprise.config.backup.utils.BackupHelper; 12 13 14 18 public class UndoRestoreStatus extends Status { 19 20 23 private String _absSnapShotFile; 24 25 26 public UndoRestoreStatus() { 27 } 28 public UndoRestoreStatus(String name) throws BackupException { 29 super(true); 30 _absSnapShotFile = name; 31 } 32 33 public String thisToString() { 34 return "SnapShot File= " + _absSnapShotFile; 35 } 36 37 44 45 46 public String getOperation() { 47 return "undoRestore"; 48 } 49 50 51 } 52 | Popular Tags |