| java.lang.Object javax.xml.ws.spi.FactoryFinder
FactoryFinder | class FactoryFinder (Code) | | This code is designed to implement the pluggability
feature and is designed to both compile and run on JDK version 1.1 and
later. The code also runs both as part of an unbundled jar file and
when bundled as part of the JDK.
This class is duplicated for each subpackage so keep it in sync.
It is package private and therefore is not exposed as part of the JAXRPC
API.
|
Inner Class :static class ConfigurationError extends Error | |
Method Summary | |
static Object | find(String factoryId, String fallbackClassName) Finds the implementation Class object in the specified order. |
find | static Object find(String factoryId, String fallbackClassName) throws ConfigurationError(Code) | | Finds the implementation Class object in the specified order. Main
entry point.
Parameters: factoryId - Name of the factory to find, same asa property name Parameters: fallbackClassName - Implementation class name, if nothing elseis found. Use null to mean no fallback. Class object of factory, never null throws: FactoryFinder.ConfigurationError - Package private so this code can be shared. |
|
|