/Prototipo/wsConsume/build/generated-sources/jax-ws/wsconsume/WsTransformadorService.java
http://prototipomemoria.googlecode.com/ · Java · 94 lines · 60 code · 16 blank · 18 comment · 1 complexity · d19675a23aaad89b61cdbb8437bc8ea3 MD5 · raw file
- package wsconsume;
-
- import java.net.MalformedURLException;
- import java.net.URL;
- import javax.xml.namespace.QName;
- import javax.xml.ws.Service;
- import javax.xml.ws.WebEndpoint;
- import javax.xml.ws.WebServiceClient;
- import javax.xml.ws.WebServiceException;
- import javax.xml.ws.WebServiceFeature;
-
-
- /**
- * This class was generated by the JAX-WS RI.
- * JAX-WS RI 2.2-hudson-752-
- * Generated source version: 2.2
- *
- */
- @WebServiceClient(name = "wsTransformadorService", targetNamespace = "http://ws.memoria/", wsdlLocation = "http://localhost:8080/PrototipoMemoria/wsTransformador?wsdl")
- public class WsTransformadorService
- extends Service
- {
-
- private final static URL WSTRANSFORMADORSERVICE_WSDL_LOCATION;
- private final static WebServiceException WSTRANSFORMADORSERVICE_EXCEPTION;
- private final static QName WSTRANSFORMADORSERVICE_QNAME = new QName("http://ws.memoria/", "wsTransformadorService");
-
- static {
- URL url = null;
- WebServiceException e = null;
- try {
- url = new URL("http://localhost:8080/PrototipoMemoria/wsTransformador?wsdl");
- } catch (MalformedURLException ex) {
- e = new WebServiceException(ex);
- }
- WSTRANSFORMADORSERVICE_WSDL_LOCATION = url;
- WSTRANSFORMADORSERVICE_EXCEPTION = e;
- }
-
- public WsTransformadorService() {
- super(__getWsdlLocation(), WSTRANSFORMADORSERVICE_QNAME);
- }
-
- public WsTransformadorService(WebServiceFeature... features) {
- super(__getWsdlLocation(), WSTRANSFORMADORSERVICE_QNAME, features);
- }
-
- public WsTransformadorService(URL wsdlLocation) {
- super(wsdlLocation, WSTRANSFORMADORSERVICE_QNAME);
- }
-
- public WsTransformadorService(URL wsdlLocation, WebServiceFeature... features) {
- super(wsdlLocation, WSTRANSFORMADORSERVICE_QNAME, features);
- }
-
- public WsTransformadorService(URL wsdlLocation, QName serviceName) {
- super(wsdlLocation, serviceName);
- }
-
- public WsTransformadorService(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
- super(wsdlLocation, serviceName, features);
- }
-
- /**
- *
- * @return
- * returns WsTransformador
- */
- @WebEndpoint(name = "wsTransformadorPort")
- public WsTransformador getWsTransformadorPort() {
- return super.getPort(new QName("http://ws.memoria/", "wsTransformadorPort"), WsTransformador.class);
- }
-
- /**
- *
- * @param features
- * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
- * @return
- * returns WsTransformador
- */
- @WebEndpoint(name = "wsTransformadorPort")
- public WsTransformador getWsTransformadorPort(WebServiceFeature... features) {
- return super.getPort(new QName("http://ws.memoria/", "wsTransformadorPort"), WsTransformador.class, features);
- }
-
- private static URL __getWsdlLocation() {
- if (WSTRANSFORMADORSERVICE_EXCEPTION!= null) {
- throw WSTRANSFORMADORSERVICE_EXCEPTION;
- }
- return WSTRANSFORMADORSERVICE_WSDL_LOCATION;
- }
-
- }