HHH-7600: Modified FilterDefinition constructor to allow for numm parameter types
This commit is contained in:
parent
d4efae0794
commit
4882bebdba
|
@ -49,8 +49,10 @@ public class FilterDefinition implements Serializable {
|
||||||
public FilterDefinition(String name, String defaultCondition, Map<String,Type> parameterTypes) {
|
public FilterDefinition(String name, String defaultCondition, Map<String,Type> parameterTypes) {
|
||||||
this.filterName = name;
|
this.filterName = name;
|
||||||
this.defaultFilterCondition = defaultCondition;
|
this.defaultFilterCondition = defaultCondition;
|
||||||
|
if (parameterTypes != null) {
|
||||||
this.parameterTypes.putAll( parameterTypes );
|
this.parameterTypes.putAll( parameterTypes );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the name of the filter this configuration defines.
|
* Get the name of the filter this configuration defines.
|
||||||
|
|
Loading…
Reference in New Issue