01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05:
06: package com.opensymphony.xwork;
07:
08: import com.uwyn.rife.continuations.ContinuableObject;
09:
10: /**
11: * Implementing this interface indicates that the action should not be cloned, but instead should be re-used. This is
12: * needed when you are using objects, fields, and method variables that cannot be cloned. The downside to using this is
13: * that the advanced forward/backward historical support that normally automatically comes with continuations is no
14: * longer available.
15: */
16: public interface NonCloningContinuableObject extends ContinuableObject {
17: }
|