continuation -> snapshot

This commit is contained in:
Keith Donald
2008-04-27 15:36:37 +00:00
parent 25ba857774
commit 411bda5312
13 changed files with 21 additions and 19 deletions

View File

@@ -20,12 +20,12 @@ import org.springframework.webflow.conversation.ConversationManager;
import org.springframework.webflow.execution.FlowExecution;
import org.springframework.webflow.execution.FlowExecutionKey;
import org.springframework.webflow.execution.repository.FlowExecutionRestorationFailureException;
import org.springframework.webflow.execution.repository.continuation.AbstractSnapshottingFlowExecutionRepository;
import org.springframework.webflow.execution.repository.continuation.FlowExecutionSnapshot;
import org.springframework.webflow.execution.repository.continuation.FlowExecutionSnapshotFactory;
import org.springframework.webflow.execution.repository.continuation.SerializedFlowExecutionSnapshotFactory;
import org.springframework.webflow.execution.repository.continuation.SnapshotNotFoundException;
import org.springframework.webflow.execution.repository.continuation.SnapshotUnmarshalException;
import org.springframework.webflow.execution.repository.snapshot.AbstractSnapshottingFlowExecutionRepository;
import org.springframework.webflow.execution.repository.snapshot.FlowExecutionSnapshot;
import org.springframework.webflow.execution.repository.snapshot.FlowExecutionSnapshotFactory;
import org.springframework.webflow.execution.repository.snapshot.SerializedFlowExecutionSnapshotFactory;
import org.springframework.webflow.execution.repository.snapshot.SnapshotNotFoundException;
import org.springframework.webflow.execution.repository.snapshot.SnapshotUnmarshalException;
import org.springframework.webflow.execution.repository.support.FlowExecutionStateRestorer;
/**

View File

@@ -2,8 +2,8 @@ package org.springframework.webflow.execution.repository.impl;
import java.io.Serializable;
import org.springframework.webflow.execution.repository.continuation.FlowExecutionSnapshot;
import org.springframework.webflow.execution.repository.continuation.SnapshotNotFoundException;
import org.springframework.webflow.execution.repository.snapshot.FlowExecutionSnapshot;
import org.springframework.webflow.execution.repository.snapshot.SnapshotNotFoundException;
/**
* A group of flow execution snapshots.

View File

@@ -20,8 +20,8 @@ import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
import org.springframework.webflow.execution.repository.continuation.FlowExecutionSnapshot;
import org.springframework.webflow.execution.repository.continuation.SnapshotNotFoundException;
import org.springframework.webflow.execution.repository.snapshot.FlowExecutionSnapshot;
import org.springframework.webflow.execution.repository.snapshot.SnapshotNotFoundException;
/**
* A group of flow execution snapshots. Simple typed data structure backed by a map and linked list. Supports expelling

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.execution.repository.continuation;
package org.springframework.webflow.execution.repository.snapshot;
import java.io.Serializable;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.execution.repository.continuation;
package org.springframework.webflow.execution.repository.snapshot;
import java.io.Serializable;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.execution.repository.continuation;
package org.springframework.webflow.execution.repository.snapshot;
import org.springframework.webflow.execution.FlowExecution;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.execution.repository.continuation;
package org.springframework.webflow.execution.repository.snapshot;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.execution.repository.continuation;
package org.springframework.webflow.execution.repository.snapshot;
import java.io.ByteArrayInputStream;
import java.io.IOException;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.execution.repository.continuation;
package org.springframework.webflow.execution.repository.snapshot;
import org.springframework.webflow.execution.FlowExecution;
import org.springframework.webflow.execution.repository.FlowExecutionRepositoryException;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.execution.repository.continuation;
package org.springframework.webflow.execution.repository.snapshot;
import java.io.Serializable;

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.webflow.execution.repository.continuation;
package org.springframework.webflow.execution.repository.snapshot;
import org.springframework.webflow.execution.FlowExecution;
import org.springframework.webflow.execution.repository.FlowExecutionRepositoryException;

View File

@@ -1,4 +1,4 @@
package org.springframework.webflow.execution.repository.continuation;
package org.springframework.webflow.execution.repository.snapshot;
import junit.framework.TestCase;
@@ -15,6 +15,8 @@ import org.springframework.webflow.engine.impl.FlowExecutionImplStateRestorer;
import org.springframework.webflow.execution.FlowExecution;
import org.springframework.webflow.execution.FlowExecutionException;
import org.springframework.webflow.execution.FlowExecutionKeyFactory;
import org.springframework.webflow.execution.repository.snapshot.FlowExecutionSnapshot;
import org.springframework.webflow.execution.repository.snapshot.SerializedFlowExecutionSnapshotFactory;
import org.springframework.webflow.execution.repository.support.FlowExecutionStateRestorer;
import org.springframework.webflow.test.MockExternalContext;
import org.springframework.webflow.test.MockFlowExecutionKeyFactory;