Package net.sf.basedb.core
Class QueryRuntimeFilterFactory.BasicFilter
- java.lang.Object
-
- net.sf.basedb.core.QueryRuntimeFilterFactory.BasicFilter
-
- All Implemented Interfaces:
QueryRuntimeFilter
- Enclosing class:
- QueryRuntimeFilterFactory
private static class QueryRuntimeFilterFactory.BasicFilter extends Object implements QueryRuntimeFilter
An optional default filter forBasicItem
:s that are notOwnable
orShareable
. The filter checks if the logged in user has generic permissionEntityQuery.getItemPermission()
for a specific item type. If not, thedenyAll
filter is enabled. This filter is often replaced by another filter for example theQueryRuntimeFilterFactory.ChildFilter
.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
BasicFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
enableFilters(QueryRuntimeFilterManager manager, EntityQuery query, DbControl dc)
Enable the filters based on the options specified by the query and the logged in users permissions.
-
-
-
Method Detail
-
enableFilters
public void enableFilters(QueryRuntimeFilterManager manager, EntityQuery query, DbControl dc)
Description copied from interface:QueryRuntimeFilter
Enable the filters based on the options specified by the query and the logged in users permissions. Implementors should use the manager to enable the filters, not theHibernateUtil.enableFilter()
method. The manager keeps track of already enabled filters and also takes care of disabling all filters after the query has been executed.- Specified by:
enableFilters
in interfaceQueryRuntimeFilter
- Parameters:
manager
- A manager that is used to actually enabled the filterquery
- The query that is going to be executed, it is not possible to modify the query, the actual HQL may already have been generateddc
- TheDbControl
used for database access and permission checking
-
-