Package org.somda.sdc.dpws.service
Interface HostedService
- All Known Implementing Classes:
HostedServiceImpl
public interface HostedService
Hosted service information of a device.
-
Method Summary
Modifier and TypeMethodDescriptiongetType()Gets the hosted service metadata requestable via WS-TransferGet.Gets the interceptor that is responsible to process incoming network requests.byte[]Provision of an byte array with WSDL document data.
-
Method Details
-
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.
-