Searched defs:factoryId (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DFactoryFinder.java64 * @param factoryId the name of the factory to find, which is
68 static Object find(String factoryId) argument
71 return find(factoryId, null, false);
86 * @param factoryId the name of the factory to find, which is
94 static Object find(String factoryId, String fallbackClassName) argument
97 return find(factoryId, fallbackClassName, true);
114 * @param factoryId the name of the factory to find, which is
124 static Object find(String factoryId, String defaultClassName, argument
136 System.getProperty( factoryId );
152 String factoryClassName = props.getProperty(factoryId);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DFactoryFinder.java74 * @param factoryId the name of the factory to find, which is
82 static Object find(String factoryId, String fallbackClassName) argument
91 String serviceId = "META-INF/services/" + factoryId;
126 String factoryClassName = props.getProperty(factoryId);
136 System.getProperty( factoryId );
145 "Provider for " + factoryId + " cannot be found", null);
/openjdk7/jaxp/src/javax/xml/stream/
H A DXMLOutputFactory.java168 * @param factoryId Name of the factory to find, same as
179 public static XMLInputFactory newInstance(String factoryId, argument
184 return (XMLInputFactory) FactoryFinder.find(factoryId, classLoader, null);
196 * newInstance(String factoryId, ClassLoader classLoader) method.
202 * @param factoryId Name of the factory to find, same as
208 public static XMLOutputFactory newFactory(String factoryId, argument
213 return (XMLOutputFactory) FactoryFinder.find(factoryId, classLoader, null);
H A DFactoryFinder.java203 * @param factoryId Name of the factory to find, same as
210 static Object find(String factoryId, String fallbackClassName) argument
213 return find(factoryId, null, fallbackClassName);
221 * @param factoryId Name of the factory to find, same as
232 static Object find(String factoryId, ClassLoader cl, String fallbackClassName) argument
235 dPrint("find factoryId =" + factoryId);
239 String systemProp = ss.getSystemProperty(factoryId);
277 factoryClassName = cacheProps.getProperty(factoryId);
289 Object provider = findJarServiceProvider(factoryId);
307 findJarServiceProvider(String factoryId) argument
[all...]
H A DXMLEventFactory.java104 * @param factoryId Name of the factory to find, same as
116 public static XMLEventFactory newInstance(String factoryId, argument
121 return (XMLEventFactory) FactoryFinder.find(factoryId, classLoader, null);
133 * newInstance(String factoryId, ClassLoader classLoader) method.
137 * @param factoryId Name of the factory to find, same as
143 public static XMLEventFactory newFactory(String factoryId, argument
148 return (XMLEventFactory) FactoryFinder.find(factoryId, classLoader, null);
H A DXMLInputFactory.java194 * @param factoryId Name of the factory to find, same as
206 public static XMLInputFactory newInstance(String factoryId, argument
211 return (XMLInputFactory) FactoryFinder.find(factoryId, classLoader, null);
223 * newInstance(String factoryId, ClassLoader classLoader) method.
227 * @param factoryId Name of the factory to find, same as
233 public static XMLInputFactory newFactory(String factoryId, argument
238 return (XMLInputFactory) FactoryFinder.find(factoryId, classLoader, null);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/utils/
H A DObjectFactory.java87 * <li>read <code>META-INF/services/<i>factoryId</i></code> file
93 * @param factoryId Name of the factory to find, same as
100 public static Object createObject(String factoryId, String fallbackClassName) argument
102 return createObject(factoryId, null, fallbackClassName);
111 * <li>read <code>META-INF/services/<i>factoryId</i></code> file
117 * @param factoryId Name of the factory to find, same as
127 public static Object createObject(String factoryId, argument
138 String systemProp = SecuritySupport.getSystemProperty(factoryId);
153 "Provider for " + factoryId + " cannot be found", null);
351 private static Object findJarServiceProvider(String factoryId) argument
[all...]
/openjdk7/jaxp/src/javax/xml/datatype/
H A DFactoryFinder.java205 * @param factoryId Name of the factory to find, same as
212 static Object find(String factoryId, String fallbackClassName) argument
215 dPrint("find factoryId =" + factoryId);
219 String systemProp = ss.getSystemProperty(factoryId);
246 factoryClassName = cacheProps.getProperty(factoryId);
258 Object provider = findJarServiceProvider(factoryId);
264 "Provider for " + factoryId + " cannot be found", null);
276 private static Object findJarServiceProvider(String factoryId) argument
279 String serviceId = "META-INF/services/" + factoryId;
[all...]
/openjdk7/jaxp/src/javax/xml/parsers/
H A DFactoryFinder.java202 * @param factoryId Name of the factory to find, same as
209 static Object find(String factoryId, String fallbackClassName) argument
212 dPrint("find factoryId =" + factoryId);
216 String systemProp = ss.getSystemProperty(factoryId);
243 factoryClassName = cacheProps.getProperty(factoryId);
255 Object provider = findJarServiceProvider(factoryId);
261 "Provider for " + factoryId + " cannot be found", null);
273 private static Object findJarServiceProvider(String factoryId) argument
276 String serviceId = "META-INF/services/" + factoryId;
[all...]
/openjdk7/jaxp/src/javax/xml/transform/
H A DFactoryFinder.java234 * @param factoryId Name of the factory to find, same as
241 static Object find(String factoryId, String fallbackClassName) argument
244 dPrint("find factoryId =" + factoryId);
247 String systemProp = ss.getSystemProperty(factoryId);
274 factoryClassName = cacheProps.getProperty(factoryId);
286 Object provider = findJarServiceProvider(factoryId);
292 "Provider for " + factoryId + " cannot be found", null);
304 private static Object findJarServiceProvider(String factoryId) argument
307 String serviceId = "META-INF/services/" + factoryId;
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DContextFinder.java267 static JAXBContext find(String factoryId, String contextPath, ClassLoader classLoader, Map properties ) throws JAXBException { argument
292 if (props.containsKey(factoryId)) {
293 factoryClassName = props.getProperty(factoryId);
296 throw new JAXBException(Messages.format(Messages.MISSING_PROPERTY, packageName, factoryId));
448 private static Class lookupUsingOSGiServiceLoader(String factoryId) { argument
451 Class serviceClass = Class.forName(factoryId);
457 logger.log(Level.FINE, "Unable to find from OSGi: {0}", factoryId);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/utils/
H A DObjectFactory.java92 * <li>read <code>META-INF/services/<i>factoryId</i></code> file
98 * @param factoryId Name of the factory to find, same as
105 public static Object createObject(String factoryId, String fallbackClassName) argument
107 return createObject(factoryId, null, fallbackClassName);
116 * <li>read <code>META-INF/services/<i>factoryId</i></code> file
122 * @param factoryId Name of the factory to find, same as
132 static Object createObject(String factoryId, argument
137 Class factoryClass = lookUpFactoryClass(factoryId,
143 "Provider for " + factoryId + " cannot be found", null);
148 if (DEBUG) debugPrintln("created new instance of factory " + factoryId);
179 lookUpFactoryClass(String factoryId) argument
207 lookUpFactoryClass(String factoryId, String propertiesFilename, String fallbackClassName) argument
261 lookUpFactoryClassName(String factoryId, String propertiesFilename, String fallbackClassName) argument
575 findJarServiceProviderName(String factoryId) argument
[all...]

Completed in 70 milliseconds