Examples of GetReportStatusCallResult


Examples of uk.co.purebuy.commerce.businessobjects.importexport.playtrade.call.GetReportStatusCallResult

      //set the authentication
      call.setUsername("user@email.com");
      call.setPassword("password");
     
      //make the call
      GetReportStatusCallResult rsresult = getreportstatus.callGetReportStatus();
     
      //have a look at all the reports
      Report[] report = rsresult.getReports();         
      for (int i = 0; i < report.length; i++)
      {
        Date endtime = PlayTradeUtils.parsePlayTradeDateTime( report[i].getReportendtime() );
        Date starttime = PlayTradeUtils.parsePlayTradeDateTime( report[i].getReportstarttime()  );
        System.out.println("Report ID: "+report[i].getReportid() + ", start=" + starttime + ", endtime=" + endtime );       
View Full Code Here
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.