01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com> and
03: * Steven Grimm <koreth[remove] at midwinter 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: MemoryLogoutPassthrough.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 SimpleLogoutPassthrough} element for managers
15: * that work with an in-memory back-end.
16: *
17: * @author Steven Grimm (koreth[remove] at midwinter dot com)
18: * @author Geert Bevin (gbevin[remove] at uwyn dot com)
19: * @version $Revision: 3643 $
20: * @since 1.0
21: */
22: @Elem
23: public class MemoryLogoutPassthrough extends SimpleLogoutPassthrough {
24: public Class getDeploymentClass() {
25: return MemoryLogoutDeployer.class;
26: }
27: }
|