// operations that are not finders and static
Collection finders = this.getQueryOperations();
Collection operations = this.getOperations();
Collection nonFinders = CollectionUtils.subtract(operations, finders);
return new FilteredCollection(nonFinders)
{
public boolean evaluate(Object object)
{
return ((OperationFacade)object).isStatic();
}