Package com.sforce.soap.partner

Examples of com.sforce.soap.partner.GetUpdatedResult


    }
    return results.size();
  }

  public UpdatedResult getUpdated(String objectType, XMLGregorianCalendar startDate, XMLGregorianCalendar endDate) throws ResourceException {
      GetUpdatedResult updated;
      try {
        updated = sfSoap.getUpdated(objectType, startDate, endDate, sh);
      } catch (com.sforce.soap.partner.InvalidSObjectFault e) {
        throw new ResourceException(e);
      } catch (com.sforce.soap.partner.UnexpectedErrorFault e) {
        throw new ResourceException(e);
      }
      UpdatedResult result = new UpdatedResult();
      result.setLatestDateCovered(updated.getLatestDateCovered().toGregorianCalendar());
      result.setIDs(updated.getIds());
      return result;
  }
View Full Code Here

TOP

Related Classes of com.sforce.soap.partner.GetUpdatedResult

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.