Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.acegisecurity.taglibs.authz.* (3)org.acegisecurity.taglibs.velocity.* (2)

Package Samples:

org.acegisecurity.taglibs.authz: Provides core Acegi Security System for Spring interfaces and classes.  
org.acegisecurity.taglibs.velocity

Classes:

AclTag: An implementation of javax.servlet.jsp.tagext.Tag that allows its body through if some authorizations are granted to the request's principal. Only works with permissions that are subclasses of org.acegisecurity.acl.basic.BasicAclEntry . One or more comma separate integer permissions are specified via the hasPermission attribute. The tag will include its body if any of the integer permissions have been granted to the current Authentication (obtained from the SecurityContextHolder ). For this class to operate it must be able to access the application context via the WebApplicationContextUtils and ...
AuthenticationTag: An javax.servlet.jsp.tagext.Tag implementation that allows convenient access to the current Authentication object. Whilst JSPs can access the SecurityContext directly, this tag avoids handling null conditions. The tag also properly accommodates Authentication.getPrincipal() , which can either be a String or a UserDetails .
Authz: Wrapper the implementation of Acegi Security for Spring JSP tag includes: org.acegisecurity.taglibs.authz.AuthenticationTag , org.acegisecurity.taglibs.authz.AclTag , org.acegisecurity.taglibs.authz.AuthorizeTag
AuthzImpl: I decided to wrap several JSP tag in one class, so I have to using inner class to wrap these JSP tag. To using this class, you need to inject Spring Context via SetAppCtx() method. AclTag need Spring Context to get AclManger bean.
AuthorizeTag: An implementation of javax.servlet.jsp.tagext.Tag that allows it's body through if some authorizations are granted to the request's principal.

Home | Contact Us | Privacy Policy | Terms of Service