2023-11-19 01:53:56 +03:00
|
|
|
package Common.Passes.All;
|
2023-11-16 22:11:58 +03:00
|
|
|
import Common.Global;
|
2023-11-19 01:53:56 +03:00
|
|
|
import Repository.TestingSystem.SAPFOR.ServerSapfor.ServerSapfor;
|
|
|
|
|
import Repository.TestingSystem.Common.TestingServer;
|
|
|
|
|
import Common.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;
|
|
|
|
|
}
|
|
|
|
|
}
|