package myCustomizationPackage;
import oracle.tip.tools.ide.fabric.custom.GenericSOACustomizationClass;
public class MyCustomizationClass extends GenericSOACustomizationClass {
public MyCustomizationClass() {
super();
// set the customization layer name
setName("MyCustomizationLayer");
}
}
For the customization class to have the correct customization layer, the customization layer name must be set by adding the following to the constructor without parameters:
// set the customization layer name
setName("MyCustomizationLayer");
You can also optionally remove the constructor with parameters.
The Create Java Class Wizard automatically generates the following content:
package myCustomizationPackage;
import oracle.tip.tools.ide.fabric.custom.GenericSOACustomizationClass;
public class MyCustomizationClass extends GenericSOACustomizationClass {
public MyCustomizationClass(String string, String string1) {
super(string, string1);
}
public MyCustomizationClass() {
super();
}
}
To make the customization class effective, compile the customization class by building the SOA project.