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: ExitField.java 3634 2007-01-08 21:42:24Z gbevin $
07: */
08: package com.uwyn.rife.engine.annotations;
09:
10: import java.lang.annotation.*;
11:
12: /**
13: * Declares an exit. This annotation may only be used on fields of type
14: * "final String".
15: *
16: * @author Steven Grimm (koreth[remove] at midwinter dot com)
17: * @version $Revision: 3634 $
18: * @since 1.5
19: */
20: @Retention(RetentionPolicy.RUNTIME)
21: @Target({ElementType.FIELD})
22: @Documented
23: public @interface ExitField {
24: }
|