Package org.apache.ws.scout.uddi

Examples of org.apache.ws.scout.uddi.GetBusinessDetail


   */
  public BusinessDetail getBusinessDetail(String[] businessKeyArray)
      throws RegistryException {
    GetBusinessDetailDocument doc = GetBusinessDetailDocument.Factory
        .newInstance();
    GetBusinessDetail request = doc.addNewGetBusinessDetail();

    if (businessKeyArray != null) {
      request.setBusinessKeyArray(businessKeyArray);
    }

        BusinessDetail bd;
        XmlObject o = execute(doc, this.getInquiryURI()).changeType(
                BusinessDetailDocument.type);
View Full Code Here

TOP

Related Classes of org.apache.ws.scout.uddi.GetBusinessDetail

Copyright © 2018 www.massapicom. 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.