Annotation Interface IsTeamMember


@Target({METHOD,TYPE}) @Retention(RUNTIME) @PreAuthorize("hasRole(\'TeamMember\')") public @interface IsTeamMember
An interface which enforces the requirement of having the TeamMember role in Spring Security.

Functionally equivalent to @PreAuthorize("hasRole('TeamMember')")