Package org.somda.sdc.dpws.service
Interface HostedService
-
- All Implemented Interfaces:
public interface HostedServiceHosted service information of a device.
-
-
Method Summary
Modifier and Type Method Description abstract HostedServiceTypegetType()Gets the hosted service metadata requestable via WS-TransferGet. abstract WebServicegetWebService()Gets the interceptor that is responsible to process incoming network requests. abstract Array<byte>getWsdlDocument()Provision of an byte array with WSDL document data. -
-
Method Detail
-
getType
abstract 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
abstract WebService getWebService()
Gets the interceptor that is responsible to process incoming network requests.
- Returns:
the Web Service interceptor where service logic is stored.
-
getWsdlDocument
abstract Array<byte> getWsdlDocument()
Provision of an byte array with WSDL document data.
- Returns:
byte array with WSDL data used to respond to WS-MetadataExchange requests.
-
-
-
-