use of com.google.storage.onestore.v3.OnestoreEntity.CompositeIndex in project appengine-java-standard by GoogleCloudPlatform.
the class LocalDatastoreService method getIndices.
// status
@SuppressWarnings("unused")
public CompositeIndices getIndices(Status status, StringProto req) {
Set<Index> indexSet = LocalCompositeIndexManager.getInstance().getIndexes();
CompositeIndices answer = new CompositeIndices();
for (Index index : indexSet) {
CompositeIndex ci = wrapIndexInCompositeIndex(req.getValue(), index);
answer.addIndex(ci);
}
return answer;
}
Aggregations