Class WebServiceMappingInfo


  • public class WebServiceMappingInfo
    extends java.lang.Object
    Mapping information about the web service. Is used to determine at runtime how a web service method should be invoked.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String porttype
      The porttype.
      protected java.lang.Class service
      The porttype.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getPortType()
      Get the porttype.
      java.lang.Class getService()
      Get the service.
      void setPortType​(java.lang.String porttype)
      Set the porttype.
      void setService​(java.lang.Class service)
      Set the service.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • service

        protected java.lang.Class service
        The porttype.
      • porttype

        protected java.lang.String porttype
        The porttype.
    • Constructor Detail

      • WebServiceMappingInfo

        public WebServiceMappingInfo()
        Create a new mapping.
      • WebServiceMappingInfo

        public WebServiceMappingInfo​(java.lang.Class service,
                                     java.lang.String porttype)
        Create a new mapping.
    • 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.