1 2 24 25 package com.sun.enterprise.connectors.util; 26 27 31 32 public class ConnectorConfigParserFactory { 33 34 35 42 43 public static ConnectorConfigParser getParser(String type) { 44 45 if(type == null) { 46 return null; 47 } 48 if(type.equals(ConnectorConfigParser.AOR)) { 49 return new AdminObjectConfigParserImpl(); 50 } else if(type.equals(ConnectorConfigParser.MCF)) { 51 return new MCFConfigParserImpl(); 52 } else if(type.equals(ConnectorConfigParser.RA)) { 53 return new ResourceAdapterConfigParserImpl(); 54 } else if(type.equals(ConnectorConfigParser.MSL)) { 55 return new MessageListenerConfigParserImpl(); 56 } else { 57 return null; 58 } 59 } 60 } 61 | Popular Tags |