A query to match
Authorizables. Pass an instance of this interface to
UserManager.findAuthorizables(Query).
The following query finds all users named 'Bob' which have the word
'engineer' in its description and returns them in ascending order wrt. to
the name.
Iterator<Authorizable> result = userMgr.findAuthorizables(new Query() {
public <T> void build(QueryBuilder<T> builder) {
builder.setCondition(builder.
and(builder.
property("@name", RelationOp.EQ, valueFactory.createValue("Bob")), builder.
contains("@description", "engineer")));
builder.setSortOrder("@name", Direction.ASCENDING);
builder.setSelector(Selector.USER);
}
});