01: /*
02: * The contents of this file are subject to the
03: * Mozilla Public License Version 1.1 (the "License");
04: * you may not use this file except in compliance with the License.
05: * You may obtain a copy of the License at http://www.mozilla.org/MPL/
06: *
07: * Software distributed under the License is distributed on an "AS IS"
08: * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
09: * See the License for the specific language governing rights and
10: * limitations under the License.
11: *
12: * The Initial Developer of the Original Code is Simulacra Media Ltd.
13: * Portions created by Simulacra Media Ltd are Copyright (C) Simulacra Media Ltd, 2004.
14: *
15: * All Rights Reserved.
16: *
17: * Contributor(s):
18: */
19: package org.openharmonise.him.window.session;
20:
21: import org.openharmonise.vfs.context.*;
22:
23: /**
24: *
25: * @author Matthew Large
26: * @version $Revision: 1.1 $
27: *
28: */
29: public class SessionEventData implements ContextData {
30:
31: public static String RESOURCE_EDITED = "RESOURCE_EDITED";
32: public static String RESOURCE_SUBMITTED = "RESOURCE_SUBMITTED";
33: public static String RESOURCE_PUBLISHED = "RESOURCE_PUBLISHED";
34: public static String RESOURCE_ARCHIVED = "RESOURCE_ARCHIVED";
35: public static String RESOURCE_EXPORTED = "RESOURCE_EXPORTED";
36: public static String RESOURCE_MOVED = "RESOURCE_MOVED";
37: public static String RESOURCE_COPIED = "RESOURCE_COPIED";
38: public static String RESOURCE_REACTIVATED = "RESOURCE_REACTIVATED";
39: public static String RESOURCE_RENAMED = "RESOURCE_RENAMED";
40: public static String RESOURCE_LOCKED = "RESOURCE_LOCKED";
41: public static String RESOURCE_UNLOCKED = "RESOURCE_UNLOCKED";
42: public static String RESOURCE_CREATED = "RESOURCE_CREATE";
43:
44: public static String SERVER_PROPS_EDITED = "SERVER_PROPS_EDITED";
45:
46: public static String USER_PASSWORD_CHANGED = "USER_PASSWORD_CHANGED";
47:
48: public static String COLLECTION_REPORDERED = "COLLECTION_REPORDERED";
49:
50: public static String REPORT_RUN = "REPORT_RUN";
51:
52: private String m_sEventType = null;
53:
54: /**
55: *
56: */
57: public SessionEventData(String sEventType) {
58: super ();
59: this .m_sEventType = sEventType;
60: }
61:
62: public String getEventType() {
63: return this.m_sEventType;
64: }
65:
66: }
|