public ProcessesRunning() { Get_Data data = new Get_Data(); data.getData("ProcessesRunning"); this.name = data.name; this.type = data.type; this.startTime = data.startTime; this.endTime = data.endTime; this.repeat = data.repeat; }
public SecureBackup() { Get_Data data = new Get_Data(); data.getData("SecureBackup"); this.name = data.name; this.type = data.type; this.startTime = data.startTime; this.endTime = data.endTime; this.repeat = data.repeat; this.filename = data.filename; this.destination = data.destination; }
public SecureRestore() { Get_Data data = new Get_Data(); data.getData("SecureRestore"); this.name = data.name; this.type = data.type; this.startTime = data.startTime; this.endTime = data.endTime; this.repeat = data.repeat; this.source = data.source; this.destination = data.destination; }