массовое удаление конфигураций DVM

This commit is contained in:
2023-12-06 02:13:55 +03:00
parent 6b115c7296
commit 469330a7ed
3 changed files with 8 additions and 3 deletions

5
.idea/workspace.xml generated
View File

@@ -6,7 +6,10 @@
</artifacts-to-build> </artifacts-to-build>
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="" /> <list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Visual_DVM_2021/Passes/All/DeleteConfiguration.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/Passes/All/DeleteConfiguration.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" /> <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />

View File

@@ -391,6 +391,8 @@ public enum Current {
//-------------------------------------------- //--------------------------------------------
public String getDescription() { public String getDescription() {
switch (this) { switch (this) {
case Configuration:
return "Конфигурация тестирования";
case ServerSapfor: case ServerSapfor:
return "тестовая версия SAPFOR"; return "тестовая версия SAPFOR";
case SubscriberWorkspace: case SubscriberWorkspace:

View File

@@ -2,8 +2,8 @@ package Visual_DVM_2021.Passes.All;
import Common.Global; import Common.Global;
import TestingSystem.Common.TestingServer; import TestingSystem.Common.TestingServer;
import TestingSystem.DVM.Configuration.Configuration; import TestingSystem.DVM.Configuration.Configuration;
import Visual_DVM_2021.Passes.Server.DeleteServerObject; import Visual_DVM_2021.Passes.DeleteServerObjects;
public class DeleteConfiguration extends DeleteServerObject<TestingServer, Configuration> { public class DeleteConfiguration extends DeleteServerObjects<TestingServer, Configuration> {
public DeleteConfiguration() { public DeleteConfiguration() {
super(Global.testingServer, Configuration.class); super(Global.testingServer, Configuration.class);
} }