KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > shark > api > client > wfservice > WfPackageEventAudit


1 package org.enhydra.shark.api.client.wfservice;
2
3
4 import org.enhydra.shark.api.client.wfbase.*;
5
6 import org.enhydra.shark.api.client.wfmodel.*;
7
8
9
10 /**
11  * Specialization of WfEventAudit interface that represents events
12  * considering XPDL management (load, unload and update of packages).
13  */

14 public interface WfPackageEventAudit extends WfEventAudit {
15    /** Returns package Id of package related to this event. */
16    String JavaDoc package_id () throws BaseException;
17    /** Returns package version of package related to this event. */
18    String JavaDoc package_version () throws BaseException;
19    /** Returns the username of resource that performed operation related to this event. */
20    String JavaDoc resource_username () throws BaseException;
21 } // interface WfPackageEventAudit
22
Popular Tags