Package org.somda.sdc.dpws.service
Interface HostedService
-
- All Known Implementing Classes:
HostedServiceImpl
public interface HostedServiceHosted service information of a device.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HostedServiceTypegetType()Gets the hosted service metadata requestable via WS-TransferGet.WebServicegetWebService()Gets the interceptor that is responsible to process incoming network requests.byte[]getWsdlDocument()Provision of an byte array with WSDL document data.
-
-
-
Method Detail
-
getType
HostedServiceType getType()
Gets the hosted service metadata requestable via WS-TransferGet.- Returns:
- a copy of the hosted service metadata to be sent over the network.
-
getWebService
WebService getWebService()
Gets the interceptor that is responsible to process incoming network requests.- Returns:
- the Web Service interceptor where service logic is stored.
-
getWsdlDocument
byte[] getWsdlDocument()
Provision of an byte array with WSDL document data.- Returns:
- byte array with WSDL data used to respond to WS-MetadataExchange requests.
-
-