Package jadex.extension.ws.invoke
Class WebServiceMappingInfo
- java.lang.Object
 - 
- jadex.extension.ws.invoke.WebServiceMappingInfo
 
 
- 
public class WebServiceMappingInfo extends java.lang.ObjectMapping information about the web service. Is used to determine at runtime how a web service method should be invoked. 
- 
- 
Constructor Summary
Constructors Constructor Description WebServiceMappingInfo()Create a new mapping.WebServiceMappingInfo(java.lang.Class service, java.lang.String porttype)Create a new mapping. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetPortType()Get the porttype.java.lang.ClassgetService()Get the service.voidsetPortType(java.lang.String porttype)Set the porttype.voidsetService(java.lang.Class service)Set the service. 
 - 
 
- 
- 
Method Detail
- 
getService
public java.lang.Class getService()
Get the service.- Returns:
 - the service.
 
 
- 
setService
public void setService(java.lang.Class service)
Set the service.- Parameters:
 service- The service to set.
 
- 
getPortType
public java.lang.String getPortType()
Get the porttype.- Returns:
 - the porttype.
 
 
- 
setPortType
public void setPortType(java.lang.String porttype)
Set the porttype.- Parameters:
 porttype- The porttype to set.
 
 - 
 
 -