2024-05-06 00:47:29 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2024-05-06 00:47:29 +03:00
|
|
|
import TestingSystem.Common.TestingServer;
|
|
|
|
|
import TestingSystem.SAPFOR.ServerSapfor.ServerSapfor;
|
|
|
|
|
import TestingSystem.SAPFOR.ServerSapfor.ServerSapforState;
|
|
|
|
|
import Visual_DVM_2021.Passes.Server.PublishServerObject;
|
|
|
|
|
public class CompileServerSapfor extends PublishServerObject<TestingServer, ServerSapfor> {
|
|
|
|
|
public CompileServerSapfor() {
|
|
|
|
|
super(Global.testingServer, ServerSapfor.class);
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public boolean fillObjectFields() throws Exception {
|
|
|
|
|
target.state= ServerSapforState.Queued;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|