/src/java/com/opensymphony/workflow/spi/WorkflowStore.java

https://bitbucket.org/opensymphony/osworkflow · Java · 126 lines · 20 code · 17 blank · 89 comment · 0 complexity · 2b5eb0419da895d3bb44f093e03d7681 MD5 · raw file

  1. /*
  2. * Copyright (c) 2002-2003 by OpenSymphony
  3. * All rights reserved.
  4. */
  5. package com.opensymphony.workflow.spi;
  6. import com.opensymphony.module.propertyset.PropertySet;
  7. import com.opensymphony.workflow.StoreException;
  8. import com.opensymphony.workflow.query.WorkflowExpressionQuery;
  9. import com.opensymphony.workflow.query.WorkflowQuery;
  10. import java.util.*;
  11. /**
  12. * Interface for pluggable workflow stores configured in osworkflow.xml.
  13. * Only one instance of a workflow store is ever created, meaning that
  14. * if your persistence connections (such as java.sql.Connection) time out,
  15. * it would be un-wise to use just one Connection for the entire object.
  16. *
  17. * @author <a href="mailto:plightbo@hotmail.com">Pat Lightbody</a>
  18. */
  19. public interface WorkflowStore {
  20. //~ Methods ////////////////////////////////////////////////////////////////
  21. /**
  22. * Set the state of the workflow instance.
  23. * @param entryId The workflow instance id.
  24. * @param state The state to move the workflow instance to.
  25. */
  26. public void setEntryState(long entryId, int state) throws StoreException;
  27. /**
  28. * Returns a PropertySet that is associated with this workflow instance ID.
  29. * @param entryId The workflow instance id.
  30. * @return a property set unique to this entry ID
  31. */
  32. public PropertySet getPropertySet(long entryId) throws StoreException;
  33. /**
  34. * Persists a step with the given parameters.
  35. *
  36. * @param entryId The workflow instance id.
  37. * @param stepId the ID of the workflow step associated with this new
  38. * Step (not to be confused with the step primary key)
  39. * @param owner the owner of the step
  40. * @param startDate the start date of the step
  41. * @param status the status of the step
  42. * @param previousIds the previous step IDs
  43. * @return a representation of the workflow step persisted
  44. */
  45. public Step createCurrentStep(long entryId, int stepId, String owner, Date startDate, Date dueDate, String status, long[] previousIds) throws StoreException;
  46. /**
  47. * Persists a new workflow entry that has <b>not been initialized</b>.
  48. *
  49. * @param workflowName the workflow name that this entry is an instance of
  50. * @return a representation of the workflow instance persisted
  51. */
  52. public WorkflowEntry createEntry(String workflowName) throws StoreException;
  53. /**
  54. * Returns a list of all current steps for the given workflow instance ID.
  55. *
  56. * @param entryId The workflow instance id.
  57. * @return a List of Steps
  58. * @see com.opensymphony.workflow.spi.Step
  59. */
  60. public List findCurrentSteps(long entryId) throws StoreException;
  61. /**
  62. * Pulls up the workflow entry data for the entry ID given.
  63. *
  64. * @param entryId The workflow instance id.
  65. * @return a representation of the workflow instance persisted
  66. */
  67. public WorkflowEntry findEntry(long entryId) throws StoreException;
  68. /**
  69. * Returns a list of all steps that are finished for the given workflow instance ID.
  70. *
  71. * @param entryId The workflow instance id.
  72. * @return a List of Steps
  73. * @see com.opensymphony.workflow.spi.Step
  74. */
  75. public List findHistorySteps(long entryId) throws StoreException;
  76. /**
  77. * Called once when the store is first created.
  78. *
  79. * @param props properties set in osworkflow.xml
  80. */
  81. public void init(Map props) throws StoreException;
  82. /**
  83. * Mark the specified step as finished.
  84. * @param step the step to finish.
  85. * @param actionId The action that caused the step to finish.
  86. * @param finishDate the date when the step was finished.
  87. * @param status The status to set the finished step to.
  88. * @param caller The caller that caused the step to finish.
  89. * @return the finished step
  90. */
  91. public Step markFinished(Step step, int actionId, Date finishDate, String status, String caller) throws StoreException;
  92. /**
  93. * Called when a step is finished and can be moved to workflow history.
  94. *
  95. * @param step the step to be moved to workflow history
  96. */
  97. public void moveToHistory(Step step) throws StoreException;
  98. /**
  99. * @deprecated use {@link WorkflowStore#query(WorkflowExpressionQuery)} instead.
  100. * @param query the query to use
  101. * @return a List of workflow instance ID's
  102. */
  103. public List query(WorkflowQuery query) throws StoreException;
  104. /**
  105. * @param query the query to use
  106. * @return a List of workflow instance ID's
  107. */
  108. public List query(WorkflowExpressionQuery query) throws StoreException;
  109. }