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

org.tynamo.security.components.Guest Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package org.tynamo.security.components;

import org.apache.tapestry5.corelib.base.AbstractConditional;
import org.apache.tapestry5.ioc.annotations.Inject;
import org.tynamo.security.services.SecurityService;

/**
 * Render body if guest
 *
 * @see SecurityService#isGuest()
 */
public class Guest extends AbstractConditional {
	@Inject
	private SecurityService securityService;

	@Override
	protected boolean test() {
		return securityService.isGuest();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy