KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > api > client > wfmodel > WfCreateProcessEventAudit


1 package org.enhydra.shark.api.client.wfmodel;
2
3
4 import org.enhydra.shark.api.client.wfbase.*;
5
6
7 /**
8  OMG definition: This interface specializes WfEventAudit by adding information related to creation of a
9  WfProcess. If the process is created as a sub-process of another process that is
10  synchronized with the main process via a WfActivity requester, information on the
11  requester is recorded. The WfProcess that is being created is recorded as the source of
12  this event.
13  <p>The event_type is set to processCreated for this event.
14  */

15 public interface WfCreateProcessEventAudit extends WfEventAudit {
16
17    /**
18     If the requester of the newly created workflow process is a WfActivity,
19     the key of that activity is recorded.
20     */

21    String JavaDoc p_activity_key () throws BaseException;
22
23
24    /**
25     If the requester of the newly created workflow process is a WfActivity,
26     the key of the WfProcess that contains that activity is recorded.
27     */

28    String JavaDoc p_process_key () throws BaseException;
29
30    /**
31     If the requester of the newly created workflow process is a WfActivity,
32     the name of the WfProcess that contains that activity is recorded.
33     */

34    String JavaDoc p_process_name () throws BaseException;
35
36    /**
37     If the requester of the newly created workflow process is a WfActivity, name
38     of the process manager of the process that contains that activity is recorded.
39     */

40    String JavaDoc p_process_mgr_name () throws BaseException;
41
42    /**
43     If the requester of the newly created workflow process is a WfActivity, version
44     of the process manager of the process that contains that activity is recorded.
45     */

46    String JavaDoc p_process_mgr_version () throws BaseException;
47 } // interface WfCreateProcessEventAudit
48
Popular Tags