01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com>
03: * Distributed under the terms of either:
04: * - the common development and distribution license (CDDL), v1.0; or
05: * - the GNU Lesser General Public License, v2.1 or later
06: * $Id: DatabaseAuthenticated.java 3643 2007-01-12 15:29:45Z gbevin $
07: */
08: package com.uwyn.rife.authentication.elements;
09:
10: import com.uwyn.rife.engine.annotations.Elem;
11:
12: /**
13: * Sets up the standard {@link Authenticated} element for managers that
14: * work with a database back-end.
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.0
20: */
21: @Elem
22: public class DatabaseAuthenticated extends RoleUserAuthenticated {
23: public Class getDeploymentClass() {
24: return DatabaseAuthenticatedDeployer.class;
25: }
26: }
|