Ejemplo n.º 1
0
 public List<Long> getAll() {
   try {
     SelectResults<Long> valuesQuery = fooRegion.query("select * from /FooRegion");
     return valuesQuery.asList();
   } catch (FunctionDomainException
       | TypeMismatchException
       | NameResolutionException
       | QueryInvocationTargetException e) {
     return emptyList();
   }
 }