2023-11-19 02:12:44 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-10-09 22:21:57 +03:00
|
|
|
import _VisualDVM.TestingSystem.SAPFOR.ServerSapfor.ServerSapfor;
|
|
|
|
|
import _VisualDVM.TestingSystem.Common.TestingServer;
|
2023-11-19 02:12:44 +03:00
|
|
|
import Visual_DVM_2021.Passes.Server.PublishServerObject;
|
2023-11-16 22:11:58 +03:00
|
|
|
public class PublishServerSapfor extends PublishServerObject<TestingServer, ServerSapfor> {
|
|
|
|
|
public PublishServerSapfor() {
|
|
|
|
|
super(Global.testingServer, ServerSapfor.class);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
protected boolean canStart(Object... args) throws Exception {
|
|
|
|
|
target = (ServerSapfor) args[0];
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|