
org.ow2.bonita.runtime.event.EventConstants Maven / Gradle / Ivy
/**
* Copyright (C) 2010-2012 BonitaSoft S.A.
* BonitaSoft, 31 rue Gustave Eiffel - 38000 Grenoble
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation
* version 2.1 of the License.
* This library 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 Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301, USA.
**/
package org.ow2.bonita.runtime.event;
/**
*
* @author Matthieu Chaffotte
*
*/
public final class EventConstants {
public static final String SEPARATOR = "@3^3NT5@";
public static final String ERROR = "error";
public static final String MESSAGE = "message";
public static final String TIMER = "timer";
public static final String SIGNAL = "signal";
public static final String START_EVENT = "event.start.";
public static final String SIGNAL_START_EVENT = START_EVENT + SIGNAL;
public static final String MESSAGE_START_EVENT = START_EVENT + MESSAGE;
public static final String BOUNDARY_EVENT = "event.boundary.";
public static final String MESSAGE_BOUNDARY_EVENT = BOUNDARY_EVENT + MESSAGE;
public static final String SIGNAL_BOUNDARY_EVENT = BOUNDARY_EVENT + SIGNAL;
public static final String INTERMEDIATE_EVENT = "event.intermediate.";
public static final String SIGNAL_INTERMEDIATE_EVENT = INTERMEDIATE_EVENT + SIGNAL;
public static final String START = "start";
public static final String BOUNDARY = "boundary";
public static final String INTERMEDIATE = "intermediate";
public static final String DEADLINE = "deadline";
public static final String ASYNC = "async";
public static final String EXECUTE_CONNECTORS_AUTOMATIC_ON_ENTER = "execCnnctAut";
public static final String CONNECTORS_AUTOMATIC_ON_ENTER_EXECUTED = "sigCnnctAutEnd";
private EventConstants() {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy