Java Examples for com.esri.gpt.control.webharvest.common.CommonCapabilities
The following java examples will help you to understand the usage of com.esri.gpt.control.webharvest.common.CommonCapabilities. These source code samples are taken from different open source projects.
Example 1
| Project: GeoprocessingAppstore-master File: HarvestProtocolAgp2Agp.java View source code |
@Override
public QueryBuilder newQueryBuilder(IterationContext context, String url) {
// for the flow requirements, some query builder has to be created.
return new QueryBuilder() {
@Override
public Capabilities getCapabilities() {
return new CommonCapabilities();
}
@Override
public Query newQuery(Criteria crt) {
return null;
}
@Override
public Native getNativeResource() {
return null;
}
};
}