01: package edu.iu.uis.eden;
02:
03: import java.io.Serializable;
04:
05: public interface WorkflowPersistable extends Serializable {
06:
07: /**
08: * @deprecated this method is dangerous and not really deterministic, especially in regards to
09: * circular references, etc. In most of the cases where we use this, we are using it to simply
10: * strip primary keys and lock version numbers from object graphs.
11: */
12: public Object copy(boolean preserveKeys);
13:
14: }
|