Перенос.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package Visual_DVM_2021.Passes.All;
|
||||
import Repository.Server.ServerCode;
|
||||
import Repository.Server.ServerExchangeUnit_2021;
|
||||
import TestingSystem.Sapfor.SapforConfiguration.SapforConfiguration;
|
||||
import Visual_DVM_2021.Passes.TestingSystemPass;
|
||||
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));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user