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

META-INF.springsecurity.taglib.xml Maven / Gradle / Ivy

There is a newer version: 1.7.3
Show newest version


	http://www.springframework.org/security/tags
    
	
        
            A standard Facelets for performing Spring Security authorization decisions. 
            The tag supports the following combinations attributes for authorization:
            access; url and method; ifAllGranted and ifAnyGranted and ifNotGranted.
            The var attribute can be used to store the result of the authorization decision for later use in the view.
        
		authorize
		com.github.persapiens.jsfboot.security.AuthorizeFaceletsTagHandler
        
        
            
                A Spring-EL expression which is supported by the WebSecurityExpressionHandler
                in the application context. The latter will be used to evaluate the expression.
            
            access
            false
            true
        

        
            
                A URL within the application. If the user has access to this URL (as determined by
                the AccessDecisionManager), the tag body will be evaluated. If not, it will
                be skipped.
            
            url
            false
            true
        

        
            
                Can be used to specify the HTTP method (typically GET or POST) which is used in combination
                with the URL when consulting the AccessDecisionManager. Only has any meaning when used in combination
                with the "url" attribute. Defaults to GET.
            
            method
            false
            false
        

        
            
                A page scoped variable into which the boolean result of the tag evaluation will be written, allowing the
                same condition to be reused subsequently in the page without re-evaluation.
            
            var
            false
            false
        
        
        
			Check if authentication has any of authorities granted.
			ifAnyGranted
			false
			java.lang.String
		
        
        
			Check if authentication has all of authorities granted.
			ifAllGranted
			false
			java.lang.String
		
        
        
			Check if authentication has none of authorities granted.
			ifNotGranted
			false
			java.lang.String
		
    
        
	
        Verify if the user is anonymous.
		anonymous
		com.github.persapiens.jsfboot.security.AnonymousFaceletsTagHandler
	
        
	
        Verify if the user is not anonymous.
		authenticated
		com.github.persapiens.jsfboot.security.AuthenticatedFaceletsTagHandler
	
        
	
        Verify if the is not an anonymous or a remember-me user.
		fullyAuthenticated
		com.github.persapiens.jsfboot.security.FullyAuthenticatedFaceletsTagHandler
	
    
	
		areAllGranted
		com.github.persapiens.jsfboot.security.FaceletsTagUtils
		boolean areAllGranted(java.lang.String)
	
	
		areAnyGranted
		com.github.persapiens.jsfboot.security.FaceletsTagUtils
		boolean areAnyGranted(java.lang.String)
	
	
		areNotGranted
		com.github.persapiens.jsfboot.security.FaceletsTagUtils
		boolean areNotGranted(java.lang.String)
	
	
		isAllowed
		com.github.persapiens.jsfboot.security.FaceletsTagUtils
        boolean isAllowed(java.lang.String, java.lang.String)
	
	
		isAnonymous
		com.github.persapiens.jsfboot.security.FaceletsTagUtils
        boolean isAnonymous()
	
	
		isAuthenticated
		com.github.persapiens.jsfboot.security.FaceletsTagUtils
        boolean isAuthenticated()
	
	
		isFullyAuthenticated
		com.github.persapiens.jsfboot.security.FaceletsTagUtils
        boolean isFullyAuthenticated()
	





© 2015 - 2024 Weber Informatics LLC | Privacy Policy