2023-11-19 02:12:44 +03:00
|
|
|
package Visual_DVM_2021.Passes.All;
|
2024-10-07 00:58:29 +03:00
|
|
|
import _VisualDVM.Global;
|
2023-11-19 02:12:44 +03:00
|
|
|
import TestingSystem.Common.TestingServer;
|
|
|
|
|
import TestingSystem.SAPFOR.SapforConfiguration.SapforConfiguration;
|
2024-09-18 13:37:11 +03:00
|
|
|
import Visual_DVM_2021.Passes.Server.DeleteServerObjects;
|
2023-12-06 02:43:06 +03:00
|
|
|
public class DeleteSapforConfiguration extends DeleteServerObjects<TestingServer, SapforConfiguration> {
|
2023-09-17 22:13:42 +03:00
|
|
|
public DeleteSapforConfiguration() {
|
2023-11-17 21:26:01 +03:00
|
|
|
super(Global.testingServer, SapforConfiguration.class);
|
2023-09-17 22:13:42 +03:00
|
|
|
}
|
|
|
|
|
}
|