Interface AuditHandlerDescription
-
public interface AuditHandlerDescription
- Since:
- 5.10
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<String>
getExcludedMethodNames()
Get a set of the method names that this handler will specifically not use.Class<?>
getHandledClass()
Set<String>
getHandledMethodNames()
Get a set of the method names that this handler will care about when creatingChangedValue
s
-
-
-
Method Detail
-
getHandledMethodNames
Set<String> getHandledMethodNames()
Get a set of the method names that this handler will care about when creatingChangedValue
s
-
getExcludedMethodNames
Set<String> getExcludedMethodNames()
Get a set of the method names that this handler will specifically not use. Useful for determining if this handler is considering all methods that it should be.
-
getHandledClass
Class<?> getHandledClass()
-
-