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