2023-09-17 22:13:42 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
|
|
|
|
import Repository.Server.ServerCode;
|
|
|
|
|
import Repository.Server.ServerExchangeUnit_2021;
|
2023-11-17 00:04:21 +03:00
|
|
|
import TestingSystem.SAPFOR.SapforConfiguration.SapforConfiguration;
|
2023-11-16 16:20:20 +03:00
|
|
|
import Visual_DVM_2021.Passes.Server.TestingSystemPass;
|
2023-09-17 22:13:42 +03:00
|
|
|
public class EditSapforConfigurationOnServer extends TestingSystemPass<SapforConfiguration> {
|
|
|
|
|
@Override
|
|
|
|
|
protected boolean canStart(Object... args) throws Exception {
|
|
|
|
|
target = (SapforConfiguration) args[0];
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
protected void ServerAction() throws Exception {
|
|
|
|
|
Command(new ServerExchangeUnit_2021(ServerCode.EditObject, "", target));
|
|
|
|
|
}
|
|
|
|
|
}
|