Change `@ParamDef#type` associated with a `@FilterDef` from `String` to `Class` in keeping with the general move away from String-based type usage in annotations
This commit is contained in:
parent
7f2194e068
commit
510ce500f6
|
@ -102,7 +102,7 @@ public class OneToManyWithDynamicFilterTest {
|
||||||
name = "aliveOnly",
|
name = "aliveOnly",
|
||||||
parameters = {
|
parameters = {
|
||||||
@ParamDef(name = "aliveTimestamp", type = Timestamp.class),
|
@ParamDef(name = "aliveTimestamp", type = Timestamp.class),
|
||||||
@ParamDef(name = "deleted", type = NumericBooleanConverter.class)
|
@ParamDef(name = "deleted", type = Boolean.class)
|
||||||
},
|
},
|
||||||
defaultCondition = "DELETION_TIMESTAMP = :aliveTimestamp and DELETED = :deleted")
|
defaultCondition = "DELETION_TIMESTAMP = :aliveTimestamp and DELETED = :deleted")
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue