1 5 8 package com.opensymphony.workflow.spi.ejb; 9 10 11 16 public interface WorkflowStoreRemote extends javax.ejb.EJBObject { 17 19 public void setEntryState(long entryId, int state) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 20 21 public com.opensymphony.workflow.spi.Step createCurrentStep(long entryId, int stepId, java.lang.String owner, java.util.Date startDate, java.util.Date dueDate, java.lang.String status, long[] previousIds) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 22 23 public com.opensymphony.workflow.spi.WorkflowEntry createEntry(java.lang.String workflowName) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 24 25 public java.util.List findCurrentSteps(long entryId) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 26 27 public com.opensymphony.workflow.spi.WorkflowEntry findEntry(long entryId) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 28 29 public java.util.List findHistorySteps(long entryId) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 30 31 public com.opensymphony.workflow.spi.Step markFinished(com.opensymphony.workflow.spi.Step step, int actionId, java.util.Date finishDate, java.lang.String status, java.lang.String caller) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 32 33 public void moveToHistory(com.opensymphony.workflow.spi.Step step) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 34 35 public java.util.List query(com.opensymphony.workflow.query.WorkflowQuery query) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 36 37 public java.util.List query(com.opensymphony.workflow.query.WorkflowExpressionQuery query) throws com.opensymphony.workflow.StoreException, java.rmi.RemoteException ; 38 } 39 | Popular Tags |