Package org.apache.ws.scout.uddi

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


   * may exist within a DispositionReport
   */
  public void addResult(Result result)
  {
    if (this.dispReport==null) {
      DispositionReportDocument doc = DispositionReportDocument.Factory.newInstance();
      this.dispReport = doc.addNewDispositionReport();
    }

    Result r = this.dispReport.addNewResult();
   
    if (result.getErrInfo() != null) r.setErrInfo(result.getErrInfo());
View Full Code Here

TOP

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

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.