/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License, version 2 as published by the Free Software * Foundation. * * You should have received a copy of the GNU General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/gpl-2.0.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * * Copyright 2005 - 2008 Pentaho Corporation. All rights reserved. * * @created Apr 15, 2005 * @author Marc Batchelor */ package org.pentaho.platform.engine.core.audit; /** * @author James Dixon * * TODO To change the template for this generated type comment go to Window - * Preferences - Java - Code Style - Code Templates */ public class MessageTypes { public static String PROCESS_START = "process_start"; //$NON-NLS-1$ public static String PROCESS_END = "process_end"; //$NON-NLS-1$ public static final String INSTANCE_START = "instance_start"; //$NON-NLS-1$ public static final String INSTANCE_END = "instance_end"; //$NON-NLS-1$ public static final String INSTANCE_FAILED = "instance_failed"; //$NON-NLS-1$ public static final String INSTANCE_ATTRIBUTE = "instance_attribute"; //$NON-NLS-1$ public static final String SESSION_START = "session_start"; //$NON-NLS-1$ public static final String SESSION_END = "session_end"; //$NON-NLS-1$ public static final String ACTION_SEQUENCE_START = "action_sequence_start"; //$NON-NLS-1$ public static final String ACTION_SEQUENCE_END = "action_sequence_end"; //$NON-NLS-1$ public static final String ACTION_SEQUENCE_FAILED = "action_sequence_failed"; //$NON-NLS-1$ public static final String COMPONENT_EXECUTE_START = "component_execution_started"; //$NON-NLS-1$ public static final String COMPONENT_EXECUTE_END = "component_execution_ended"; //$NON-NLS-1$ public static final String COMPONENT_EXECUTE_FAILED = "component_execution_failed"; //$NON-NLS-1$ public static final String DEPRECATION_WARNING = "deprecated"; //$NON-NLS-1$ public static String PROCESS_ID_SESSION = "session"; //$NON-NLS-1$ public static String PROCESS_ID_PORTLET = "portlet"; //$NON-NLS-1$ public static String PROCESS_ID_HTTP = "http"; //$NON-NLS-1$ public static final String START = "start"; //$NON-NLS-1$ public static final String FAILED = "failed"; //$NON-NLS-1$ public static String NOT_EXECUTED = "not_executed"; //$NON-NLS-1$ public static final String END = "end"; //$NON-NLS-1$ public static final String VALIDATION = "validation"; //$NON-NLS-1$ public static final String EXECUTION = "execution"; //$NON-NLS-1$ public static String UNKNOWN_ENTRY = "unkown"; //$NON-NLS-1$ public static String ACTION_SEQUENCE_EXECUTE_CONDITIONAL = "condition"; //$NON-NLS-1$ }