org.jboss.seam.annotations.security.Read Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-seam Show documentation
Show all versions of jboss-seam Show documentation
Seam core module for Seam framework integrated with JSF2
package org.jboss.seam.annotations.security;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
*
*
* @author Shane Bryzak
*/
@Target({ METHOD, PARAMETER })
@Documented
@Retention(RUNTIME)
@Inherited
@PermissionCheck
public @interface Read {
Class value() default void.class;
}