Class WebServiceDefinition
java.lang.Object
com.aquima.interactions.portal.model.webservice.WebServiceDefinition
- All Implemented Interfaces:
IWebServiceDefinition
,Serializable
The internal implementation for the IExposedSoapServiceDefinition interface.
- Since:
- 9.0
- Author:
- Jon van Leuven
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
WebServiceDefinition
(IWebServiceDS datasource, ModuleCache modules, IFlowEngine flowEngine, ISolution solution) -
Method Summary
Modifier and TypeMethodDescriptionThis method returns the module in which the service is defined.getName()
This method returns the name of the webservice definition.This method returns the reference to a rest service.This method returns the reference to a soap service.
-
Constructor Details
-
WebServiceDefinition
protected WebServiceDefinition(IWebServiceDS datasource, ModuleCache modules, IFlowEngine flowEngine, ISolution solution) throws InitializationException - Throws:
InitializationException
-
-
Method Details
-
getName
Description copied from interface:IWebServiceDefinition
This method returns the name of the webservice definition.- Specified by:
getName
in interfaceIWebServiceDefinition
- Returns:
- The name, never null or empty.
-
getModule
Description copied from interface:IWebServiceDefinition
This method returns the module in which the service is defined.- Specified by:
getModule
in interfaceIWebServiceDefinition
- Returns:
- The moduleId of the module.
-
getSoapServiceConfiguration
Description copied from interface:IWebServiceDefinition
This method returns the reference to a soap service. A webservice can either have a reference to a soap service or a rest service.- Specified by:
getSoapServiceConfiguration
in interfaceIWebServiceDefinition
- Returns:
- The reference to the soap service, or null if the service has a rest service reference.
-
getRestServiceConfiguration
Description copied from interface:IWebServiceDefinition
This method returns the reference to a rest service. A webservice can either have a reference to a soap service or a rest service.- Specified by:
getRestServiceConfiguration
in interfaceIWebServiceDefinition
- Returns:
- The reference to the rest service, or null if the service has a rest soap reference.
-