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 SummaryConstructors Constructor Description WebServiceMappingInfo()Create a new mapping.WebServiceMappingInfo(java.lang.Class service, java.lang.String porttype)Create a new mapping.
 - 
Method SummaryAll 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- 
getServicepublic java.lang.Class getService() Get the service.- Returns:
- the service.
 
 - 
setServicepublic void setService(java.lang.Class service) Set the service.- Parameters:
- service- The service to set.
 
 - 
getPortTypepublic java.lang.String getPortType() Get the porttype.- Returns:
- the porttype.
 
 - 
setPortTypepublic void setPortType(java.lang.String porttype) Set the porttype.- Parameters:
- porttype- The porttype to set.
 
 
- 
 
-