Package org.somda.sdc.dpws.service
Class HostedServiceImpl
- java.lang.Object
-
- org.somda.sdc.dpws.service.HostedServiceImpl
-
- All Implemented Interfaces:
HostedService
public class HostedServiceImpl extends Object implements HostedService
Default implementation of HostedService.
-
-
Method Summary
All Methods Instance Methods Concrete 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
public HostedServiceType getType()
Description copied from interface:HostedServiceGets the hosted service metadata requestable via WS-TransferGet.- Specified by:
getTypein interfaceHostedService- Returns:
- a copy of the hosted service metadata to be sent over the network.
-
getWebService
public WebService getWebService()
Description copied from interface:HostedServiceGets the interceptor that is responsible to process incoming network requests.- Specified by:
getWebServicein interfaceHostedService- Returns:
- the Web Service interceptor where service logic is stored.
-
getWsdlDocument
public byte[] getWsdlDocument()
Description copied from interface:HostedServiceProvision of an byte array with WSDL document data.- Specified by:
getWsdlDocumentin interfaceHostedService- Returns:
- byte array with WSDL data used to respond to WS-MetadataExchange requests.
-
-