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: EngineContinuationsTransformer.java 3811 2007-06-25 15:06:16Z gbevin $
07: */
08: package com.uwyn.rife.instrument;
09:
10: import com.uwyn.rife.continuations.instrument.ContinuationsTransformer;
11: import com.uwyn.rife.engine.EngineContinuationConfigInstrument;
12:
13: /**
14: * This is a bytecode transformer that will modify classes so that they
15: * receive the functionalities that are required to support the continuations
16: * functionalities as they are provided by RIFE's web engine.
17: *
18: * @author Geert Bevin (gbevin[remove] at uwyn dot com)
19: * @version $Revision: 3811 $
20: * @since 1.6
21: */
22: public class EngineContinuationsTransformer extends
23: ContinuationsTransformer {
24: public EngineContinuationsTransformer() {
25: super (new EngineContinuationConfigInstrument());
26: }
27: }
|