Package org.jboss.soa.bpel.samples.quickstart.purchase

Source Code of org.jboss.soa.bpel.samples.quickstart.purchase.PurchaseSVC

package org.jboss.soa.bpel.samples.quickstart.purchase;

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.WebServiceFeature;

/**
* This class was generated by the JAX-WS RI. JAX-WS RI 2.1.6 Generated source
* version: 2.1
*/
@WebServiceClient(name = PurchaseSVC.SERVICE_NAME, targetNamespace = PurchaseSVC.TARGET_NAMESPACE, wsdlLocation = PurchaseSVC.WSDL_LOCATION)
public class PurchaseSVC extends Service {

  private static final String SHIPPING_CALLBACK_PORT_NAME =
      "shippingCallbackSP";
  private static final String INVOICE_CALLBACK_PORT_NAME = "invoiceCallbackSP";
  static final String SERVICE_NAME = "purchaseSVC";
  static final String TARGET_NAMESPACE =
      "http://manufacturing.org/wsdl/purchase";
  static final String WSDL_LOCATION =
      "http://127.0.0.1:8080/Tutorial_bpel_purchase_invoiceCallback?wsdl";

  private static final URL WSDL_URL = createURL(WSDL_LOCATION);

  private static URL createURL(String location) {
    try {
      return new URL(location);
    }
    catch (MalformedURLException e) {
      throw new IllegalArgumentException(location, e);
    }
  }

  public PurchaseSVC(URL wsdlLocation, QName serviceName) {
    super(wsdlLocation, serviceName);
  }

  public PurchaseSVC() {
    super(WSDL_URL, new QName(TARGET_NAMESPACE, SERVICE_NAME));
  }

  /**
   * @return returns InvoiceCallbackPT
   */
  @WebEndpoint(name = INVOICE_CALLBACK_PORT_NAME)
  public InvoiceCallbackPT getInvoiceCallbackSP() {
    return super.getPort(
        new QName(TARGET_NAMESPACE, INVOICE_CALLBACK_PORT_NAME),
        InvoiceCallbackPT.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 InvoiceCallbackPT
   */
  @WebEndpoint(name = INVOICE_CALLBACK_PORT_NAME)
  public InvoiceCallbackPT getInvoiceCallbackSP(WebServiceFeature... features) {
    return super.getPort(
        new QName(TARGET_NAMESPACE, INVOICE_CALLBACK_PORT_NAME),
        InvoiceCallbackPT.class, features);
  }

  /**
   * @return returns ShippingCallbackPT
   */
  @WebEndpoint(name = SHIPPING_CALLBACK_PORT_NAME)
  public ShippingCallbackPT getShippingCallbackSP() {
    return super.getPort(new QName(TARGET_NAMESPACE,
        SHIPPING_CALLBACK_PORT_NAME), ShippingCallbackPT.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 ShippingCallbackPT
   */
  @WebEndpoint(name = SHIPPING_CALLBACK_PORT_NAME)
  public ShippingCallbackPT getShippingCallbackSP(WebServiceFeature... features) {
    return super.getPort(new QName(TARGET_NAMESPACE,
        SHIPPING_CALLBACK_PORT_NAME), ShippingCallbackPT.class, features);
  }

}
TOP

Related Classes of org.jboss.soa.bpel.samples.quickstart.purchase.PurchaseSVC

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.