|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.xml.rpc.ServiceFactory
public abstract class ServiceFactory
The javax.xml.rpc.ServiceFactory
is an abstract class
that provides a factory for the creation of instances of the type
javax.xml.rpc.Service
. This abstract class follows the
abstract static factory design pattern. This enables a J2SE based
client to create a Service instance
in a portable manner
without using the constructor of the Service
implementation class.
The ServiceFactory implementation class is set using the
system property SERVICEFACTORY_PROPERTY
.
Field Summary | |
---|---|
static String |
SERVICEFACTORY_PROPERTY
A constant representing the property used to lookup the name of a ServiceFactory implementation
class. |
Constructor Summary | |
---|---|
protected |
ServiceFactory()
Protected constructor. |
Method Summary | |
---|---|
abstract Service |
createService(QName serviceName)
Create a Service instance. |
abstract Service |
createService(URL wsdlDocumentLocation,
QName serviceName)
Create a Service instance. |
abstract Service |
loadService(Class class1)
|
abstract Service |
loadService(URL url,
Class class1,
Properties properties)
|
abstract Service |
loadService(URL url,
QName qname,
Properties properties)
|
static ServiceFactory |
newInstance()
Gets an instance of the ServiceFactory
Only one copy of a factory exists and is returned to the
application each time this method is called. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String SERVICEFACTORY_PROPERTY
ServiceFactory
implementation
class.
Constructor Detail |
---|
protected ServiceFactory()
Method Detail |
---|
public static ServiceFactory newInstance() throws ServiceException
ServiceFactory
Only one copy of a factory exists and is returned to the application each time this method is called.
The implementation class to be used can be overridden by setting the javax.xml.rpc.ServiceFactory system property.
ServiceException
public abstract Service createService(URL wsdlDocumentLocation, QName serviceName) throws ServiceException
Service
instance.
wsdlDocumentLocation
- URL for the WSDL document locationserviceName
- QName for the service.
ServiceException
- If any error in creation of the
specified servicepublic abstract Service createService(QName serviceName) throws ServiceException
Service
instance.
serviceName
- QName for the service
ServiceException
- If any error in creation of the specified servicepublic abstract Service loadService(Class class1) throws ServiceException
ServiceException
public abstract Service loadService(URL url, Class class1, Properties properties) throws ServiceException
ServiceException
public abstract Service loadService(URL url, QName qname, Properties properties) throws ServiceException
ServiceException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |