How to create a GTC Transport Provider for flat file provisioning ??
As we can see on the reference guide http://docs.oracle.com/cd/E37115_01/index.htm we can do reconciliation trusted and target for the flatfile, but what about provisioning on flatfile ??
I need to create a custom provider that implements ProvisioningTransportProvider interface , but I did not find anything on the web . I create a custom transformation provider like this :
import com.thortech.xl.gc.exception.ProviderException;
import com.thortech.xl.gc.spi.TransformationProvider;
import java.util.Hashtable;
public class CustomTransformationProvider implements TransformationProvider {
public CustomTransformationProvider() {
super();
}
private static String providerType = "TransformationProvider";
private static String providerName = "CustomTransformationProvider";
private static String errorRespNullInput = "REMQUOTES_INPUTSTR_MISSING";