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

Examples of com.esri.gpt.catalog.harvest.jobs.HjCreateRequest.execute()


* @param criteria criteria
* @return <code>true</code> if task has been sumbited
*/
public synchronized boolean add(RequestContext context, HrRecord resource, CommonCriteria criteria) {
  HjCreateRequest request = new HjCreateRequest(context, resource, criteria, false);
  boolean result = request.execute();
  notify();
  return result;
}

/**
 
View Full Code Here


* @param criteria criteria
* @return <code>true</code> if task has been registered
*/
public synchronized boolean register(RequestContext context, HrRecord resource, CommonCriteria criteria) {
  HjCreateRequest request = new HjCreateRequest(context, resource, criteria, true);
  return request.execute();
}

/**
* Notifies change.
*/
 
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.