17 lines
609 B
Java
17 lines
609 B
Java
|
|
package Visual_DVM_2021.Passes.All;
|
||
|
|
import Repository.Server.ServerCode;
|
||
|
|
import Repository.Server.ServerExchangeUnit_2021;
|
||
|
|
import TestingSystem.Configuration.Configuration;
|
||
|
|
import Visual_DVM_2021.Passes.TestingSystemPass;
|
||
|
|
public class EditConfigurationOnServer extends TestingSystemPass<Configuration> {
|
||
|
|
@Override
|
||
|
|
protected boolean canStart(Object... args) throws Exception {
|
||
|
|
target = (Configuration) args[0];
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
@Override
|
||
|
|
protected void ServerAction() throws Exception {
|
||
|
|
Command(new ServerExchangeUnit_2021(ServerCode.EditObject, "", target));
|
||
|
|
}
|
||
|
|
}
|