Package com.esri.gpt.catalog.harvest.jobs

Examples of com.esri.gpt.catalog.harvest.jobs.HjCompleteRequest


* @param uuid resource UUID
* @return <code>true</code> if task has been found and completed
*/
public boolean complete(RequestContext context, String uuid) {
  try {
    HjCompleteRequest request = new HjCompleteRequest(context, uuid);
    return request.execute();
  } catch (SQLException ex) {
    LOGGER.log(Level.WARNING, "[SYNCHRONIZER] Error completing task", ex);
    return false;
  }
}
View Full Code Here

TOP

Related Classes of com.esri.gpt.catalog.harvest.jobs.HjCompleteRequest

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.