2023-11-19 01:53:56 +03:00
|
|
|
package Common.Passes.All;
|
2023-09-17 22:13:42 +03:00
|
|
|
import Common.Current;
|
2023-11-17 21:26:01 +03:00
|
|
|
import Common.Global;
|
2023-11-19 01:53:56 +03:00
|
|
|
import Repository.TestingSystem.Common.TestingServer;
|
|
|
|
|
import Repository.TestingSystem.SAPFOR.SapforConfigurationCommand.SapforConfigurationCommand;
|
|
|
|
|
import Common.Passes.Server.PublishServerObject;
|
2023-11-17 21:26:01 +03:00
|
|
|
public class PublishSapforConfigurationCommand extends PublishServerObject<TestingServer, SapforConfigurationCommand> {
|
|
|
|
|
public PublishSapforConfigurationCommand() {
|
|
|
|
|
super(Global.testingServer, SapforConfigurationCommand.class);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
@Override
|
2023-11-17 21:26:01 +03:00
|
|
|
public boolean fillObjectFields() throws Exception {
|
2023-11-17 21:36:56 +03:00
|
|
|
target.sapforconfiguration_id = Current.getSapforConfiguration().id;
|
2023-11-17 21:26:01 +03:00
|
|
|
return super.fillObjectFields();
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|