25 lines
643 B
Java
25 lines
643 B
Java
package _VisualDVM;
|
|
import com.google.gson.annotations.Expose;
|
|
|
|
import java.io.File;
|
|
public class ComponentsServerProperties extends VisualDVMProperties{
|
|
//---
|
|
@Expose
|
|
public boolean EmailAdminsOnStart = false;
|
|
@Expose
|
|
public String BackupWorkspace = "_sapfor_x64_backups";
|
|
@Expose
|
|
public int BackupHour = 5;
|
|
@Expose
|
|
public int BackupMinute = 0;
|
|
@Expose
|
|
public int ComponentsBackUpsCount = 10;
|
|
//---
|
|
public ComponentsServerProperties(){
|
|
Mode = _VisualDVM.Mode.Server;
|
|
}
|
|
public ComponentsServerProperties(File file_in){
|
|
super(_VisualDVM.Mode.Server, file_in);
|
|
}
|
|
}
|