Package com.groiss.ws
Interface SOAPWebService
public interface SOAPWebService
a
SOAPWebService
is a collection of SOAPWebServiceOperation
. contains the actual WSDL-definition for all operations-
Method Summary
Modifier and TypeMethodDescriptionget all namespaces required for this webservicejavax.wsdl.Definition
get the WSDL-Definition
of the webservicegetId()
get the IDgetName()
get the service-nameget all operations registered with thisSOAPWebService
getPort()
get the portstatic SOAPWebService
getService
(String id) get the registeredSOAPWebService
with the provided ID.getUrl()
get the URL the webservice will be invoked on
-
Method Details
-
getService
get the registeredSOAPWebService
with the provided ID.- Returns:
- the webservice
- See Also:
-
getDefinition
javax.wsdl.Definition getDefinition()get the WSDL-Definition
of the webservice- Returns:
-
getName
QName getName()get the service-name- Returns:
-
getId
String getId()get the ID- Returns:
-
getPort
String getPort()get the port- Returns:
-
getOperations
List<SOAPWebServiceOperation> getOperations()get all operations registered with thisSOAPWebService
- Returns:
-
getDeclaredNamespaces
Collection<Namespace> getDeclaredNamespaces()get all namespaces required for this webservice- Returns:
-
getUrl
String getUrl()get the URL the webservice will be invoked on- Returns:
-