Searched refs:DenyAll (Results 1 - 5 of 5) sorted by relevance

/glassfish-3.1.2/javaee-api/javax.annotation/src/main/java/javax/annotation/security/
H A DDenyAll.java58 public @interface DenyAll { interface
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/annotation/handlers/
H A DDenyAllHandler.java49 import javax.annotation.security.DenyAll;
54 * This handler is responsible for handling the javax.annotation.security.DenyAll.
69 return DenyAll.class;
H A DPermitAllHandler.java49 import javax.annotation.security.DenyAll;
94 return new Class[] { DenyAll.class, RolesAllowed.class };
H A DRolesAllowedHandler.java49 import javax.annotation.security.DenyAll;
105 return new Class[] { DenyAll.class, PermitAll.class };
H A DAbstractAuthAnnotationHandler.java61 import javax.annotation.security.DenyAll;
67 * such as @DenyAll, @PermitAll and @RolesAllowed.
281 * One cannot have two or more of the @DenyAll, @PermitAll, @RoleAllowed.
296 if (ae.isAnnotationPresent(DenyAll.class)) {
310 "One cannot have more than one of @RolesAllowed, @PermitAll, @DenyAll in the same AnnotatedElement."));

Completed in 18 milliseconds