Uses of Class
com.sun.xml.ws.client.sei.ResponseBuilder

Packages that use ResponseBuilder
com.sun.xml.ws.client.sei   
 

Uses of ResponseBuilder in com.sun.xml.ws.client.sei
 

Subclasses of ResponseBuilder in com.sun.xml.ws.client.sei
(package private) static class ResponseBuilder.AttachmentBuilder
          Reads an Attachment into a Java parameter.
(package private) static class ResponseBuilder.Body
          Reads the whole payload into a single JAXB bean.
(package private) static class ResponseBuilder.Composite
          ResponseBuilder that is a composition of multiple ResponseBuilders.
(package private) static class ResponseBuilder.DocLit
          Treats a payload as multiple parts wrapped into one element, and processes all such wrapped parts.
(package private) static class ResponseBuilder.Header
          Reads a header into a JAXB object.
(package private) static class ResponseBuilder.None
           
(package private) static class ResponseBuilder.NullSetter
          ResponseBuilder that sets the VM uninitialized value to the type.
(package private) static class ResponseBuilder.RpcLit
          Treats a payload as multiple parts wrapped into one element, and processes all such wrapped parts.
 

Fields in com.sun.xml.ws.client.sei declared as ResponseBuilder
static ResponseBuilder ResponseBuilder.NONE
          The singleton instance that produces null return value.
 

Methods in com.sun.xml.ws.client.sei that return ResponseBuilder
(package private)  ResponseBuilder SEIMethodHandler.buildResponseBuilder(JavaMethodImpl method, ValueSetterFactory setterFactory)
           
static ResponseBuilder ResponseBuilder.AttachmentBuilder.createAttachmentBuilder(ParameterImpl param, ValueSetter setter)
          Creates an AttachmentBuilder based on the parameter type
 

Constructors in com.sun.xml.ws.client.sei with parameters of type ResponseBuilder
ResponseBuilder.Composite(ResponseBuilder... builders)
           
 

Constructor parameters in com.sun.xml.ws.client.sei with type arguments of type ResponseBuilder
ResponseBuilder.Composite(Collection<? extends ResponseBuilder> builders)