Lines Matching defs:Service

36  * {@code Service} objects provide the client view of a Web service.
37 * <p>{@code Service} acts as a factory of the following:
51 * <p>Handler chains for all the objects created by a {@code Service}
66 public class Service {
87 * Creates a {@code Service}.
96 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName) {
103 * Creates a {@code Service}. The created instance is
112 * @param features Web Service features that must be configured on
116 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) {
130 * @param <T> Service endpoint interface.
133 * @param serviceEndpointInterface Service endpoint interface
164 * @param <T> Service endpoint interface.
167 * @param serviceEndpointInterface Service endpoint interface
209 * @param <T> Service endpoint interface.
210 * @param serviceEndpointInterface Service endpoint interface.
238 * @param <T> Service endpoint interface.
239 * @param serviceEndpointInterface Service endpoint interface.
284 * the WSDL associated with this {@code Service} instance or
286 * If this {@code Service} instance has a WSDL and
289 * If this {@code Service} instance does not have a WSDL and
293 * If this {@code Service} instance has a known proxy
306 * associated with this {@code Service} instance.
308 * @param <T> Service endpoint interface.
312 * @param serviceEndpointInterface Service endpoint interface.
326 * {@code Service} instance.
428 Service.Mode mode, WebServiceFeature... features) {
445 * the WSDL associated with this {@code Service} instance or
447 * If this {@code Service} instance has a WSDL and
450 * If this {@code Service} instance does not have a WSDL and
488 * with this {@code Service} instance.
504 Class<T> type, Service.Mode mode,
562 JAXBContext context, Service.Mode mode, WebServiceFeature... features) {
579 * the WSDL associated with this {@code Service} instance or
581 * If this {@code Service} instance has a WSDL and
585 * If this {@code Service} instance does not have a WSDL and
620 * with this {@code Service} instance.
635 JAXBContext context, Service.Mode mode,
655 * @throws WebServiceException If this Service class does not
663 * Gets the location of the WSDL document for this Service.
676 * used by this {@code Service} instance, or {@code null}
684 * Sets the {@code HandlerResolver} for this {@code Service}
701 * Returns the executor for this {@code Service}instance.
716 * Sets the executor for this {@code Service} instance.
735 * Creates a {@code Service} instance.
743 * @return Service instance
747 public static Service create(
750 return new Service(wsdlDocumentLocation, serviceName);
754 * Creates a {@code Service} instance. The created instance is
763 * @param features Web Service features that must be configured on
766 * @return Service instance configured with requested web service features
771 public static Service create(
774 return new Service(wsdlDocumentLocation, serviceName, features);
778 * Creates a {@code Service} instance.
781 * @return Service instance
785 public static Service create(QName serviceName) {
786 return new Service(null, serviceName);
790 * Creates a {@code Service} instance. The created instance is
794 * @param features Web Service features that must be configured on
797 * @return Service instance configured with requested web service features
803 public static Service create(QName serviceName, WebServiceFeature ... features) {
804 return new Service(null, serviceName, features);