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: PurgingMixedAuthenticated.java 3643 2007-01-12 15:29:45Z gbevin $
08: */
09: package com.uwyn.rife.authentication.elements;
10:
11: import com.uwyn.rife.engine.annotations.Elem;
12:
13: /**
14: * Sets up the standard {@link Authenticated} element with credentials and
15: * remember-me managers for database storage, but the session managers for
16: * memory storage and enables automatic in-process purging.
17: *
18: * @author Steven Grimm (koreth[remove] at midwinter dot com)
19: * @author Geert Bevin (gbevin[remove] at uwyn dot com)
20: * @version $Revision: 3643 $
21: * @since 1.0
22: */
23: @Elem
24: public class PurgingMixedAuthenticated extends RoleUserAuthenticated {
25: public Class getDeploymentClass() {
26: return PurgingMixedAuthenticatedDeployer.class;
27: }
28: }
|