Package org.apache.ws.scout.uddi

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


   */
  public TModelDetail getTModelDetail(String[] tModelKeyArray)
      throws RegistryException {
    GetTModelDetailDocument doc = GetTModelDetailDocument.Factory
        .newInstance();
    GetTModelDetail request = doc.addNewGetTModelDetail();

    if (tModelKeyArray != null) {
      request.setTModelKeyArray(tModelKeyArray);
    }

        TModelDetail tmd;
        XmlObject o = execute(doc, this.getInquiryURI()).changeType(
                TModelDetailDocument.type);
View Full Code Here

TOP

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

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.