1 16 package org.springframework.webflow.execution.repository.continuation; 17 18 import java.io.Serializable ; 19 20 import org.springframework.webflow.execution.FlowExecution; 21 22 31 public abstract class FlowExecutionContinuation implements Serializable { 32 33 39 public abstract FlowExecution unmarshal() throws ContinuationUnmarshalException; 40 41 45 public abstract byte[] toByteArray(); 46 47 } | Popular Tags |