package org.jboss.seam.security.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Used to delegate a method as the provider for a specific authorization check * * @author Shane Bryzak */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface Secures { }