|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.xml.rpc.ServiceFactory org.jboss.webservice.client.ServiceFactoryImpl
The javax.xml.rpc.ServiceFactory is a factory for the creation of instances of the type javax.xml.rpc.Service.
This 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.
Field Summary |
Fields inherited from class javax.xml.rpc.ServiceFactory |
SERVICEFACTORY_PROPERTY |
Constructor Summary | |
ServiceFactoryImpl()
|
Method Summary | |
javax.xml.rpc.Service |
createService(javax.xml.namespace.QName serviceName)
Create a Service instance. |
javax.xml.rpc.Service |
createService(URL wsdlDocumentLocation,
javax.xml.namespace.QName serviceName)
Create a Service instance. |
javax.xml.rpc.Service |
createService(URL wsdlLocation,
URL mappingLocation,
URL ws4eeMetaData,
javax.xml.namespace.QName serviceName,
String portName)
Create a Service instance. |
javax.xml.rpc.Service |
loadService(Class serviceInterface)
Create an instance of the generated service implementation class for a given service interface, if available. |
javax.xml.rpc.Service |
loadService(URL wsdlDocumentLocation,
Class serviceInterface,
Properties props)
Create an instance of the generated service implementation class for a given service interface, if available. |
javax.xml.rpc.Service |
loadService(URL wsdlDocumentLocation,
javax.xml.namespace.QName serviceName,
Properties props)
Create an instance of the generated service implementation class for a given service, if available. |
Methods inherited from class javax.xml.rpc.ServiceFactory |
newInstance |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public ServiceFactoryImpl()
Method Detail |
public javax.xml.rpc.Service loadService(Class serviceInterface) throws javax.xml.rpc.ServiceException
serviceInterface
- Service interface
javax.xml.rpc.ServiceException
- If there is any error while creating the specified service, including the case where a
generated service implementation class cannot be locatedpublic javax.xml.rpc.Service loadService(URL wsdlDocumentLocation, Class serviceInterface, Properties props) throws javax.xml.rpc.ServiceException
wsdlDocumentLocation
- URL for the WSDL document location for the service or nullserviceInterface
- Service interfaceprops
- A set of implementation-specific properties to help locate the generated service implementation class
javax.xml.rpc.ServiceException
- If there is any error while creating the specified service, including the case where a
generated service implementation class cannot be locatedpublic javax.xml.rpc.Service loadService(URL wsdlDocumentLocation, javax.xml.namespace.QName serviceName, Properties props) throws javax.xml.rpc.ServiceException
wsdlDocumentLocation
- URL for the WSDL document location for the service or nullserviceName
- Qualified name for the serviceprops
- A set of implementation-specific properties to help locate the generated service implementation class
javax.xml.rpc.ServiceException
- If there is any error while creating the specified service, including the case where a generated service implementation class cannot be locatedpublic javax.xml.rpc.Service createService(javax.xml.namespace.QName serviceName) throws javax.xml.rpc.ServiceException
Service
instance.
serviceName
- QName for the service
javax.xml.rpc.ServiceException
- If any error in creation of the specified servicepublic javax.xml.rpc.Service createService(URL wsdlDocumentLocation, javax.xml.namespace.QName serviceName) throws javax.xml.rpc.ServiceException
Service
instance.
wsdlDocumentLocation
- URL for the WSDL document locationserviceName
- QName for the service.
javax.xml.rpc.ServiceException
- If any error in creation of the
specified servicepublic javax.xml.rpc.Service createService(URL wsdlLocation, URL mappingLocation, URL ws4eeMetaData, javax.xml.namespace.QName serviceName, String portName) throws javax.xml.rpc.ServiceException
Service
instance.
Note, this method is not in the ServiceFactory
interface, it provides the service
with additional ws4ee wsdl/java mapping information
wsdlLocation
- URL for the WSDL document locationmappingLocation
- An optional URL for the jaxrpc-mapping.xml locationserviceName
- QName for the service.portName
- An optional port name
javax.xml.rpc.ServiceException
- If any error in creation of the
specified service
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |