Files
VisualSapfor/src/Visual_DVM_2021/Passes/All/PublishServerSapfor.java

16 lines
554 B
Java
Raw Normal View History

2023-11-16 22:11:58 +03:00
package Visual_DVM_2021.Passes.All;
import Common.Global;
2023-11-17 00:04:21 +03:00
import TestingSystem.SAPFOR.ServerSapfor.ServerSapfor;
import TestingSystem.Common.TestingServer;
2023-11-16 22:11:58 +03:00
import Visual_DVM_2021.Passes.Server.PublishServerObject;
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;
}
}