Searched defs:portInterface (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DSEIPortInfo.java60 public BindingImpl createBinding(WebServiceFeature[] webServiceFeatures, Class<?> portInterface) { argument
61 BindingImpl bindingImpl = super.createBinding(webServiceFeatures,portInterface);
H A DPortInfo.java113 * @param portInterface
118 public BindingImpl createBinding(WebServiceFeature[] webServiceFeatures, Class<?> portInterface) { argument
140 r.mergeFeatures(owner.serviceInterceptor.preCreateBinding(this,portInterface,r), false);
H A DWSServiceDelegate.java293 public <T> T getPort(QName portName, Class<T> portInterface) throws WebServiceException { argument
294 return getPort(portName, portInterface, EMPTY_FEATURES);
297 public <T> T getPort(QName portName, Class<T> portInterface, WebServiceFeature... features) { argument
298 if (portName == null || portInterface == null)
304 tWsdlService = getWSDLModelfromSEI(portInterface);
307 throw new WebServiceException(ProviderApiMessages.NO_WSDL_NO_PORT(portInterface.getName()));
312 return getPort(portModel.getEPR(), portName, portInterface, features);
315 public <T> T getPort(EndpointReference epr, Class<T> portInterface, WebServiceFeature... features) { argument
316 return getPort(WSEndpointReference.create(epr),portInterface,features);
319 public <T> T getPort(WSEndpointReference wsepr, Class<T> portInterface, WebServiceFeatur argument
327 getPort(WSEndpointReference wsepr, QName portName, Class<T> portInterface, WebServiceFeature... features) argument
332 getPort(Class<T> portInterface, WebServiceFeature... features) argument
353 getPort(Class<T> portInterface) argument
578 createEndpointIFBaseProxy(@ullable WSEndpointReference epr,QName portName, final Class<T> portInterface, WebServiceFeature[] webServiceFeatures, SEIPortInfo eif) argument
600 createProxy(final Class<T> portInterface, final SEIStub pis) argument
651 addSEI(QName portName, Class portInterface, WebServiceFeature... features) argument
667 createSEIPortInfo(QName portName, Class portInterface, WebServiceFeature... features) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DStubs.java361 * TODO: can model be constructed from portInterface and binding?
363 * @param portInterface
371 Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) {
374 return portInterface.cast(
375 Proxy.newProxyInstance( portInterface.getClassLoader(),
376 new Class[]{portInterface, WSBindingProvider.class}, ps ));
388 * TODO: can model be constructed from portInterface and binding?
390 * @param portInterface
396 Class<T> portInterface, @Nullable WSEndpointReference epr ) {
399 return portInterface
370 createPortProxy( WSService service, WSBinding binding, SEIModel model, Class<T> portInterface, Tube next, @Nullable WSEndpointReference epr ) argument
395 createPortProxy( WSPortInfo portInfo, WSBinding binding, SEIModel model, Class<T> portInterface, @Nullable WSEndpointReference epr ) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DWSService.java76 public abstract <T> T getPort(WSEndpointReference epr, Class<T> portInterface, WebServiceFeature... features); argument

Completed in 341 milliseconds