01: package edu.iu.uis.eden;
02:
03: import java.io.Serializable;
04:
05: /**
06: * <p><Title> </p>
07: * <p><Description> </p>
08: * <p><p><p>Copyright: Copyright (c) 2002</p>
09: * <p><p>Company: UIS - Indiana University</p>
10: * @author <a href="mailto:seiffert@indiana.edu">Kurt A. Seiffert</a>
11: * @version $Revision: 1.2 $ - $Date: 2005/07/01 22:04:06 $
12: */
13: public interface IDocumentEvent extends Serializable {
14: public static final String ROUTE_LEVEL_CHANGE = "rt_lvl_change";
15: public static final String ROUTE_STATUS_CHANGE = "rt_status_change";
16: public static final String DELETE_CHANGE = "delete_document";
17: public static final String ACTION_TAKEN = "action_taken";
18:
19: public String getDocumentEventCode();
20:
21: public Long getRouteHeaderId();
22:
23: /**
24: * Returns the application document id registered for this document when it was
25: * created.
26: * @return
27: */
28: public String getAppDocId();
29: }
30:
31: /*
32: * Copyright 2003 The Trustees of Indiana University. All rights reserved.
33: *
34: * This file is part of the EDEN software package.
35: * For license information, see the LICENSE file in the top level directory
36: * of the EDEN source distribution.
37: */
|