Uses of Class
com.sun.xml.ws.api.model.ParameterBinding

Packages that use ParameterBinding
com.sun.xml.ws.api.model   
com.sun.xml.ws.api.model.wsdl   
com.sun.xml.ws.model   
com.sun.xml.ws.model.wsdl   
 

Uses of ParameterBinding in com.sun.xml.ws.api.model
 

Fields in com.sun.xml.ws.api.model declared as ParameterBinding
static ParameterBinding ParameterBinding.BODY
          Singleton instance that represents 'BODY'
static ParameterBinding ParameterBinding.HEADER
          Singleton instance that represents 'HEADER'
static ParameterBinding ParameterBinding.UNBOUND
          Singleton instance that represents 'UNBOUND', meaning the parameter doesn't have a representation in a SOAP message.
 

Methods in com.sun.xml.ws.api.model that return ParameterBinding
static ParameterBinding ParameterBinding.createAttachment(String mimeType)
          Creates an instance that represents the attachment with a given MIME type.
 ParameterBinding Parameter.getBinding()
          Returns the binding associated with the parameter.
 ParameterBinding Parameter.getInBinding()
          Returns the ParameterBinding associated with the IN mode
 ParameterBinding Parameter.getOutBinding()
          Returns the ParameterBinding associated with the OUT mode
 

Uses of ParameterBinding in com.sun.xml.ws.api.model.wsdl
 

Methods in com.sun.xml.ws.api.model.wsdl that return ParameterBinding
 ParameterBinding WSDLPart.getBinding()
          Gets the wsdl:part binding as seen thru wsdl:binding
 

Uses of ParameterBinding in com.sun.xml.ws.model
 

Methods in com.sun.xml.ws.model that return ParameterBinding
 ParameterBinding ParameterImpl.getBinding()
           
 ParameterBinding ParameterImpl.getInBinding()
           
 ParameterBinding ParameterImpl.getOutBinding()
           
 

Methods in com.sun.xml.ws.model with parameters of type ParameterBinding
 void ParameterImpl.setBinding(ParameterBinding binding)
           
 void ParameterImpl.setInBinding(ParameterBinding binding)
           
 void ParameterImpl.setOutBinding(ParameterBinding binding)
           
 

Uses of ParameterBinding in com.sun.xml.ws.model.wsdl
 

Methods in com.sun.xml.ws.model.wsdl that return ParameterBinding
 ParameterBinding WSDLPartImpl.getBinding()
           
 ParameterBinding WSDLBoundPortTypeImpl.getBinding(QName operation, String part, javax.jws.WebParam.Mode mode)
          Gets the ParameterBinding for a given operation, part name and the direction - IN/OUT
 ParameterBinding WSDLBoundOperationImpl.getFaultBinding(String part)
          Gets ParameterBinding for a given wsdl part in wsdl:fault
 ParameterBinding WSDLBoundOperationImpl.getInputBinding(String part)
          Gets ParameterBinding for a given wsdl part in wsdl:input
 ParameterBinding WSDLBoundOperationImpl.getOutputBinding(String part)
          Gets ParameterBinding for a given wsdl part in wsdl:output
 

Methods in com.sun.xml.ws.model.wsdl that return types with arguments of type ParameterBinding
 Map<String,ParameterBinding> WSDLBoundOperationImpl.getFaultParts()
          Map of wsdl:fault part name and the binding as ParameterBinding
 Map<String,ParameterBinding> WSDLBoundOperationImpl.getInputParts()
          Map of wsdl:input part name and the binding as ParameterBinding
 Map<String,ParameterBinding> WSDLBoundOperationImpl.getOutputParts()
          Map of wsdl:output part name and the binding as ParameterBinding
 

Methods in com.sun.xml.ws.model.wsdl with parameters of type ParameterBinding
 void WSDLPartImpl.setBinding(ParameterBinding binding)