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

com.github.persapiens.jsfboot.security.AuthenticatedFaceletsTag Maven / Gradle / Ivy

There is a newer version: 1.7.3
Show newest version
package com.github.persapiens.jsfboot.security;


import org.springframework.security.taglibs.authz.AbstractAuthorizeTag;

/**
 * A concrete implementation of {@link AbstractAuthorizeTag} for use with standard Facelets rendering technology.
 */
public class AuthenticatedFaceletsTag extends AbstractFaceletsAuthorizeTag {

	/**
	 * A default constructor. Callers of this constructor are responsible for setting one or more of the tag attributes
	 * in {@link AbstractAuthorizeTag}.
	 */
	public AuthenticatedFaceletsTag() {
        setAccess("isAuthenticated()");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy