no message
This commit is contained in:
23
src/Visual_DVM_2021/Passes/All/CompileServerSapfor.java
Normal file
23
src/Visual_DVM_2021/Passes/All/CompileServerSapfor.java
Normal file
@@ -0,0 +1,23 @@
|
||||
package Visual_DVM_2021.Passes.All;
|
||||
import Common.Global;
|
||||
import ProjectData.LanguageName;
|
||||
import Repository.Server.ServerCode;
|
||||
import Repository.Server.ServerExchangeUnit_2021;
|
||||
import TestingSystem.Common.Group.Group;
|
||||
import TestingSystem.Common.TestingServer;
|
||||
import TestingSystem.SAPFOR.ServerSapfor.ServerSapfor;
|
||||
import TestingSystem.SAPFOR.ServerSapfor.ServerSapforState;
|
||||
import Visual_DVM_2021.Passes.Server.PublishServerObject;
|
||||
import Visual_DVM_2021.Passes.Server.TestingSystemPass;
|
||||
|
||||
import java.util.Date;
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -334,12 +334,15 @@ public enum PassCode_2021 {
|
||||
PublishComponentsServer,
|
||||
//---
|
||||
SPF_InsertImplicitNone,
|
||||
CompileServerSapfor,
|
||||
;
|
||||
public String getDescription() {
|
||||
switch (this) {
|
||||
case Undefined:
|
||||
return "?";
|
||||
//--
|
||||
case CompileServerSapfor:
|
||||
return "Собрать версию Sapfor";
|
||||
case PublishComponentsServer:
|
||||
return "Опубликовать сервер компонент и отчётов об ошибках";
|
||||
case PingComponentsServer:
|
||||
|
||||
Reference in New Issue
Block a user