|
Project Wonder 5.0 | |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public static interface ERXKeyFilter.Delegate
ERXKeyFilter.Delegate defines an interface for receiving notifications when your filter is applied to an object graph. This gives you the opportunity to do some validation and security checks for more complex scenarios.
Method Summary | |
---|---|
void |
didSkipValueForKey(java.lang.Object target,
java.lang.Object value,
java.lang.String key)
Called after skipping a key. |
void |
didTakeValueForKey(java.lang.Object target,
java.lang.Object value,
java.lang.String key)
Called after pushing the given value into obj.key. |
void |
willTakeValueForKey(java.lang.Object target,
java.lang.Object value,
java.lang.String key)
Called prior to pushing the given value into obj.key. |
Method Detail |
---|
void willTakeValueForKey(java.lang.Object target, java.lang.Object value, java.lang.String key) throws java.lang.SecurityException
target
- the target objectvalue
- the value it will be set onkey
- the key that will be set
java.lang.SecurityException
- if you shouldn't be doing thisvoid didTakeValueForKey(java.lang.Object target, java.lang.Object value, java.lang.String key) throws java.lang.SecurityException
target
- the target objectvalue
- the value that was setkey
- the key that was set
java.lang.SecurityException
- if someone was naughtyvoid didSkipValueForKey(java.lang.Object target, java.lang.Object value, java.lang.String key) throws java.lang.SecurityException
target
- the target objectvalue
- the value that was skippedkey
- the key that was skipped
java.lang.SecurityException
- if someone was naughty
|
Last updated: Tue, Feb 21, 2017 05:45 PM CET | |||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |