⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 workflowstore.java

📁 一个很好实用的工作流OSWORKFLOW开发例子.有着非常优秀的灵活性.
💻 JAVA
字号:
/* * Copyright (c) 2002-2003 by OpenSymphony * All rights reserved. */package com.opensymphony.workflow.spi;import com.opensymphony.module.propertyset.PropertySet;import com.opensymphony.workflow.StoreException;import com.opensymphony.workflow.query.WorkflowExpressionQuery;import com.opensymphony.workflow.query.WorkflowQuery;import java.util.*;/** * Interface for pluggable workflow stores configured in osworkflow.xml. * Only one instance of a workflow store is ever created, meaning that * if your persistence connections (such as java.sql.Connection) time out, * it would be un-wise to use just one Connection for the entire object. * * @author <a href="mailto:plightbo@hotmail.com">Pat Lightbody</a> */public interface WorkflowStore {    //~ Methods ////////////////////////////////////////////////////////////////    /**     * Set the state of the workflow instance.     * @param entryId The workflow instance id.     * @param state The state to move the workflow instance to.     */    public void setEntryState(long entryId, int state) throws StoreException;    /**     * Returns a PropertySet that is associated with this workflow instance ID.     * @param entryId The workflow instance id.     * @return a property set unique to this entry ID     */    public PropertySet getPropertySet(long entryId) throws StoreException;    /**     * Persists a step with the given parameters.     *     * @param entryId The workflow instance id.     * @param stepId the ID of the workflow step associated with this new     *               Step (not to be confused with the step primary key)     * @param owner the owner of the step     * @param startDate the start date of the step     * @param status the status of the step     * @param previousIds the previous step IDs     * @return a representation of the workflow step persisted     */    public Step createCurrentStep(long entryId, int stepId, String owner, Date startDate, Date dueDate, String status, long[] previousIds) throws StoreException;    /**     * Persists a new workflow entry that has <b>not been initialized</b>.     *     * @param workflowName the workflow name that this entry is an instance of     * @return a representation of the workflow instance persisted     */    public WorkflowEntry createEntry(String workflowName) throws StoreException;    /**     * Returns a list of all current steps for the given workflow instance ID.     *     * @param entryId The workflow instance id.     * @return a List of Steps     * @see com.opensymphony.workflow.spi.Step     */    public List findCurrentSteps(long entryId) throws StoreException;    /**     * Pulls up the workflow entry data for the entry ID given.     *     * @param entryId The workflow instance id.     * @return a representation of the workflow instance persisted     */    public WorkflowEntry findEntry(long entryId) throws StoreException;    /**     * Returns a list of all steps that are finished for the given workflow instance ID.     *     * @param entryId The workflow instance id.     * @return a List of Steps     * @see com.opensymphony.workflow.spi.Step     */    public List findHistorySteps(long entryId) throws StoreException;    /**     * Called once when the store is first created.     *     * @param props properties set in osworkflow.xml     */    public void init(Map props) throws StoreException;    /**     * Mark the specified step as finished.     * @param step the step to finish.     * @param actionId The action that caused the step to finish.     * @param finishDate the date when the step was finished.     * @param status The status to set the finished step to.     * @param caller The caller that caused the step to finish.     * @return the finished step     */    public Step markFinished(Step step, int actionId, Date finishDate, String status, String caller) throws StoreException;    /**     * Called when a step is finished and can be moved to workflow history.     *     * @param step the step to be moved to workflow history     */    public void moveToHistory(Step step) throws StoreException;    /**     * @deprecated use {@link WorkflowStore#query(WorkflowExpressionQuery)} instead.     * @param query the query to use     * @return a List of workflow instance ID's     */    public List query(WorkflowQuery query) throws StoreException;    /**     * @param query the query to use     * @return a List of workflow instance ID's     */    public List query(WorkflowExpressionQuery query) throws StoreException;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -