Example #1
0
        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;
        }
Example #2
0
        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;
        }
Example #3
0
        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;
        }