2023-09-17 22:13:42 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
|
|
|
|
import Common.Global;
|
2023-11-17 21:26:01 +03:00
|
|
|
import TestingSystem.Common.TestingServer;
|
2023-11-17 00:04:21 +03:00
|
|
|
import TestingSystem.SAPFOR.SapforConfigurationCommand.SapforConfigurationCommand;
|
2023-11-17 21:26:01 +03:00
|
|
|
import Visual_DVM_2021.Passes.Server.EditServerObject;
|
|
|
|
|
public class EditSapforConfigurationCommand extends EditServerObject<TestingServer,SapforConfigurationCommand> {
|
2023-09-17 22:13:42 +03:00
|
|
|
public EditSapforConfigurationCommand() {
|
2023-11-17 21:26:01 +03:00
|
|
|
super(Global.testingServer,SapforConfigurationCommand.class);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|