Returns a specific connector configuration parser class based on the
type of configurations to parse.
if(type == null) {
return null;
}
if(type.equals(ConnectorConfigParser.AOR)) {
return new AdminObjectConfigParserImpl();
} else if(type.equals(ConnectorConfigParser.MCF)) {
return new MCFConfigParserImpl();
} else if(type.equals(ConnectorConfigParser.RA)) {
return new ResourceAdapterConfigParserImpl();
} else if(type.equals(ConnectorConfigParser.MSL)) {
return new MessageListenerConfigParserImpl();
} else {
return null;
}