org.hibernate.engine
public class: FilterDefinition [javadoc |
source]
java.lang.Object
org.hibernate.engine.FilterDefinition
All Implemented Interfaces:
Serializable
A FilterDefinition defines the global attributes of a dynamic filter. This
information includes its name as well as its defined parameters (name and type).
| Constructor: |
public FilterDefinition(String name,
String defaultCondition,
Map parameterTypes) {
this.filterName = name;
this.defaultFilterCondition = defaultCondition;
this.parameterTypes.putAll( parameterTypes );
}
Construct a new FilterDefinition instance. Parameters:
name - The name of the filter for which this configuration is in effect.
|