public WsdlTestStep buildTestStep(WsdlTestCase testCase, TestStepConfig config, boolean forLoadTest) {
return new PropertyTransfersTestStep(testCase, config, forLoadTest);
}
public TestStepConfig createNewTestStep(WsdlTestCase testCase, String name) {
TestStepConfig testStepConfig = TestStepConfig.Factory.newInstance();
testStepConfig.setType(TRANSFER_TYPE);
testStepConfig.setName(name);
testStepConfig.setConfig(PropertyTransfersStepConfig.Factory.newInstance());
return testStepConfig;
}