Skip to content

Instantly share code, notes, and snippets.

@igm
Created July 7, 2011 11:48
Show Gist options
  • Save igm/1069348 to your computer and use it in GitHub Desktop.
Save igm/1069348 to your computer and use it in GitHub Desktop.
Secured annotation
@Target({ ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface Secured {
Boolean admin() default false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment