01: /*
02: * Copyright 2001-2007 Steven Grimm <koreth[remove] at midwinter dot com> and
03: * Geert Bevin <gbevin[remove] at uwyn dot com>
04: * Distributed under the terms of either:
05: * - the common development and distribution license (CDDL), v1.0; or
06: * - the GNU Lesser General Public License, v2.1 or later
07: * $Id: FactoryPropertyAuthenticated.java 3643 2007-01-12 15:29:45Z gbevin $
08: */
09: package com.uwyn.rife.authentication.elements;
10:
11: /**
12: * Authenticated element that uses element properties to determine which
13: * authentication objects to use. Most of the properties are actually
14: * used by the deployer class, {@link FactoryPropertyAuthenticatedDeployer}.
15: *
16: * @author Steven Grimm (koreth[remove] at midwinter dot com)
17: * @author Geert Bevin (gbevin[remove] at uwyn dot com)
18: * @version $Revision: 3643 $
19: * @since 1.6
20: */
21: import com.uwyn.rife.engine.annotations.Elem;
22:
23: @Elem
24: public class FactoryPropertyAuthenticated extends RoleUserAuthenticated {
25: public Class getDeploymentClass() {
26: return FactoryPropertyAuthenticatedDeployer.class;
27: }
28: }
|