/**
* Creates a new OperationContext object that selects everything.
*/
public static OperationContext createMaximumOperationContext() {
return new OperationContextImpl(Collections.singleton(PROPERTIES_STAR), true, true, true,
IncludeRelationships.BOTH, Collections.singleton("*"), false, null, true, 100);
}