Lines Matching refs:next

73  * <h3>Pipe next</h3>
76 * and this pipe passed in as the <tt>next</tt> parameter will receive a {@link Message}
77 * from newly created stub. All the methods taking Tube <<next>> parameter are deprecated. JAX-WS Runtime takes care of
78 * creating the tubeline when the <tt>next</tt> parameter is not passed. This gives flexibility for the JAX-WS Runtime
113 * createDispatch(port,owner,binding,SOAPMessage.class,mode,next);
117 public static Dispatch<SOAPMessage> createSAAJDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) {
119 return new com.sun.xml.internal.ws.client.dispatch.SOAPMessageDispatch(portName, mode, (WSServiceDelegate)owner, next, (BindingImpl)binding, epr);
127 * createDispatch(port,owner,binding,SOAPMessage.class,mode,next);
140 * createDispatch(port,owner,binding,DataSource.class,mode,next);
144 public static Dispatch<DataSource> createDataSourceDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) {
146 return new DataSourceDispatch(portName, mode, (WSServiceDelegate)owner, next, (BindingImpl)binding, epr);
154 * createDispatch(port,owner,binding,DataSource.class,mode,next);
167 * createDispatch(port,owner,binding,Source.class,mode,next);
171 public static Dispatch<Source> createSourceDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) {
172 return DispatchImpl.createSourceDispatch(portName, mode, (WSServiceDelegate)owner, next, (BindingImpl)binding, epr);
180 * createDispatch(port,owner,binding,Source.class,mode,next);
202 * @param next
211 Class<T> clazz, Service.Mode mode, Tube next,
214 return (Dispatch<T>) createSAAJDispatch(portName, owner, binding, mode, next, epr);
216 return (Dispatch<T>) createSourceDispatch(portName, owner, binding, mode, next, epr);
218 return (Dispatch<T>) createDataSourceDispatch(portName, owner, binding, mode, next, epr);
221 return (Dispatch<T>) createMessageDispatch(portName, owner, binding, next, epr);
281 * @param next
289 JAXBContext jaxbContext, Service.Mode mode, Tube next,
291 return new JAXBDispatch(portName, jaxbContext, mode, (WSServiceDelegate)owner, next, (BindingImpl)binding, epr);
322 * @param next
330 Tube next, @Nullable WSEndpointReference epr) {
331 return new MessageDispatch(portName, (WSServiceDelegate)owner, next, (BindingImpl)binding, epr);
365 * @param next
371 Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {
373 SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model,next, epr);