KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > pentaho > core > audit > MessageTypes


1 /*
2  * Copyright 2006 Pentaho Corporation. All rights reserved.
3  * This software was developed by Pentaho Corporation and is provided under the terms
4  * of the Mozilla Public License, Version 1.1, or any later version. You may not use
5  * this file except in compliance with the license. If you need a copy of the license,
6  * please go to http://www.mozilla.org/MPL/MPL-1.1.txt. The Original Code is the Pentaho
7  * BI Platform. The Initial Developer is Pentaho Corporation.
8  *
9  * Software distributed under the Mozilla Public License is distributed on an "AS IS"
10  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. Please refer to
11  * the license for the specific language governing your rights and limitations.
12  *
13  * @created Apr 15, 2005
14  * @author Marc Batchelor
15  */

16
17 package org.pentaho.core.audit;
18
19 /**
20  * @author James Dixon
21  *
22  * TODO To change the template for this generated type comment go to Window -
23  * Preferences - Java - Code Style - Code Templates
24  */

25 public class MessageTypes {
26
27     public static String JavaDoc PROCESS_START = "process_start"; //$NON-NLS-1$
28

29     public static String JavaDoc PROCESS_END = "process_end"; //$NON-NLS-1$
30

31     public static String JavaDoc INSTANCE_START = "instance_start"; //$NON-NLS-1$
32

33     public static String JavaDoc INSTANCE_END = "instance_end"; //$NON-NLS-1$
34

35     public static String JavaDoc INSTANCE_FAILED = "instance_failed"; //$NON-NLS-1$
36

37     public static String JavaDoc INSTANCE_ATTRIBUTE = "instance_attribute"; //$NON-NLS-1$
38

39     public static String JavaDoc SESSION_START = "session_start"; //$NON-NLS-1$
40

41     public static String JavaDoc SESSION_END = "session_end"; //$NON-NLS-1$
42

43     public static String JavaDoc ACTION_SEQUENCE_START = "action_sequence_start"; //$NON-NLS-1$
44

45     public static String JavaDoc ACTION_SEQUENCE_END = "action_sequence_end"; //$NON-NLS-1$
46

47     public static String JavaDoc ACTION_SEQUENCE_FAILED = "action_sequence_failed"; //$NON-NLS-1$
48

49     public static String JavaDoc COMPONENT_EXECUTE_START = "component_execution_started"; //$NON-NLS-1$
50

51     public static String JavaDoc COMPONENT_EXECUTE_END = "component_execution_ended"; //$NON-NLS-1$
52

53     public static String JavaDoc COMPONENT_EXECUTE_FAILED = "component_execution_failed"; //$NON-NLS-1$
54

55     public static String JavaDoc DEPRECATION_WARNING = "deprecated"; //$NON-NLS-1$
56

57     public static String JavaDoc PROCESS_ID_SESSION = "session"; //$NON-NLS-1$
58

59     public static String JavaDoc PROCESS_ID_PORTLET = "portlet"; //$NON-NLS-1$
60

61     public static String JavaDoc PROCESS_ID_HTTP = "http"; //$NON-NLS-1$
62

63     public static String JavaDoc START = "start"; //$NON-NLS-1$
64

65     public static String JavaDoc FAILED = "failed"; //$NON-NLS-1$
66

67     public static String JavaDoc NOT_EXECUTED = "not_executed"; //$NON-NLS-1$
68

69     public static String JavaDoc END = "end"; //$NON-NLS-1$
70

71     public static String JavaDoc VALIDATION = "validation"; //$NON-NLS-1$
72

73     public static String JavaDoc EXECUTION = "execution"; //$NON-NLS-1$
74

75     public static String JavaDoc UNKNOWN_ENTRY = "unkown"; //$NON-NLS-1$
76

77     public static String JavaDoc ACTION_SEQUENCE_EXECUTE_CONDITIONAL = "condition"; //$NON-NLS-1$
78

79 }
80
Popular Tags