Files
VisualSapfor/src/_VisualDVM/Passes/All/DeleteServerSapfor.java

15 lines
593 B
Java
Raw Normal View History

2024-10-14 12:14:01 +03:00
package _VisualDVM.Passes.All;
import _VisualDVM.Global;
2024-10-16 21:18:30 +03:00
import _VisualDVM.Passes.Server.DeleteServerObjects;
2024-10-14 15:19:13 +03:00
import _VisualDVM.TestingSystem.Common.TestingServer;
import _VisualDVM.TestingSystem.SAPFOR.ServerSapfor.ServerSapfor;
2024-10-16 21:18:30 +03:00
public class DeleteServerSapfor extends DeleteServerObjects<TestingServer, ServerSapfor> {
2023-10-05 00:50:36 +03:00
public DeleteServerSapfor() {
2023-11-16 22:11:58 +03:00
super(Global.testingServer, ServerSapfor.class);
2023-10-05 00:50:36 +03:00
}
@Override
protected boolean canStart(Object... args) throws Exception {
2024-10-14 15:19:13 +03:00
return super.canStart(args) && Global.mainModule.getAccount().CheckAdmin(Log);
}
2023-10-05 00:50:36 +03:00
}