@Retention(value=RUNTIME) @Target(value=TYPE) @Repeatable(value=InvalidateMethod.Multiple.class) public @interface InvalidateMethod
The name of the methods are used as an identifier in the database, so that a single provider does not duplicate entries. Only first 50 characters of the method name are stored. If you need to change a method name add this class annotation with the old method name.
Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
value
Name of the old method, values of which should be removed from the database.
|