All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.seam.annotations.security.Read Maven / Gradle / Ivy

There is a newer version: 3.2.26.ayg
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy