continuation -> snapshot
This commit is contained in:
@@ -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;
|
||||
|
||||
/**
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
Reference in New Issue
Block a user