Annotation Type WhoCreated


@Target(FIELD) @Retention(RUNTIME) public @interface WhoCreated
Mapped onto a entity bean property that represents the user id of who created the entity>

To use this annotation you need to implement CurrentUserProvider. The type of the bean property should match the type returned by CurrentUserProvider.

Example:



   @WhoCreated
   String whoCreated;