2023-11-19 02:12:44 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2023-11-17 21:26:01 +03:00
|
|
|
import Common.Global;
|
2023-11-19 02:12:44 +03:00
|
|
|
import TestingSystem.Common.TestingServer;
|
|
|
|
|
import TestingSystem.SAPFOR.SapforConfiguration.SapforConfiguration;
|
|
|
|
|
import Visual_DVM_2021.Passes.Server.PublishServerObject;
|
2023-11-17 21:26:01 +03:00
|
|
|
public class PublishSapforConfiguration extends PublishServerObject<TestingServer, SapforConfiguration> {
|
|
|
|
|
public PublishSapforConfiguration() {
|
|
|
|
|
super(Global.testingServer, SapforConfiguration.class);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|