Lines Matching refs:Service

36  * <code>Service</code> objects provide the client view of a Web service.
37 * <p><code>Service</code> acts as a factory of the following:
51 * <p>Handler chains for all the objects created by a <code>Service</code>
66 public class Service {
76 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName) {
82 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) {
98 * @param serviceEndpointInterface Service endpoint interface
131 * @param serviceEndpointInterface Service endpoint interface
173 * @param serviceEndpointInterface Service endpoint interface.
201 * @param serviceEndpointInterface Service endpoint interface.
246 * the WSDL associated with this <code>Service</code> instance or
248 * If this <code>Service</code> instance has a WSDL and
251 * If this <code>Service</code> instance does not have a WSDL and
255 * If this <code>Service</code> instance has a known proxy
268 * associated with this <code>Service</code> instance.
273 * @param serviceEndpointInterface Service endpoint interface.
287 * <code>Service</code> instance.
387 Service.Mode mode, WebServiceFeature... features) {
404 * the WSDL associated with this <code>Service</code> instance or
406 * If this <code>Service</code> instance has a WSDL and
409 * If this <code>Service</code> instance does not have a WSDL and
446 * with this <code>Service</code> instance.
462 Class<T> type, Service.Mode mode,
520 JAXBContext context, Service.Mode mode, WebServiceFeature... features) {
537 * the WSDL associated with this <code>Service</code> instance or
539 * If this <code>Service</code> instance has a WSDL and
543 * If this <code>Service</code> instance does not have a WSDL and
578 * with this <code>Service</code> instance.
593 JAXBContext context, Service.Mode mode,
613 * @throws WebServiceException If this Service class does not
621 * Gets the location of the WSDL document for this Service.
634 * used by this <code>Service</code> instance, or <code>null</code>
642 * Sets the <code>HandlerResolver</code> for this <code>Service</code>
659 * Returns the executor for this <code>Service</code>instance.
674 * Sets the executor for this <code>Service</code> instance.
693 * Creates a <code>Service</code> instance.
704 public static Service create(
707 return new Service(wsdlDocumentLocation, serviceName);
711 * Creates a <code>Service</code> instance. The created instance is
720 * @param features Web Service features that must be configured on
727 public static Service create(
730 return new Service(wsdlDocumentLocation, serviceName, features);
734 * Creates a <code>Service</code> instance.
740 public static Service create(QName serviceName) {
741 return new Service(null, serviceName);
745 * Creates a <code>Service</code> instance. The created instance is
749 * @param features Web Service features that must be configured on
757 public static Service create(QName serviceName, WebServiceFeature ... features) {
758 return new Service(null, serviceName, features);