use of org.activityinfo.store.query.shared.NullFormSupervisor in project activityinfo by bedatadriven.
the class AsyncClientStub method queryTableColumns.
@Override
public Promise<ColumnSet> queryTableColumns(QueryModel query) {
if (!connected) {
return offlineResult();
}
ColumnSetBuilder columnSetBuilder = new ColumnSetBuilder(storageProvider, new NullFormScanCache(), new NullFormSupervisor());
ColumnSet columnSet = columnSetBuilder.build(query);
return Promise.resolved(columnSet);
}
Aggregations