/* * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */ package org.mule.runtime.core.context.notification; import org.mule.runtime.core.api.construct.FlowConstruct; import org.mule.runtime.core.api.context.notification.SynchronousServerEvent; import org.mule.runtime.core.api.context.notification.ServerNotification; /** * <code>FlowConstructNotification</code> is fired when an event such as the flow construct starting occurs. The payload of this * event will always be a reference to the flow construct. */ public class FlowConstructNotification extends ServerNotification implements SynchronousServerEvent { private static final long serialVersionUID = 6658641434183647952L; public static final int FLOW_CONSTRUCT_INITIALISED = FLOW_CONSTRUCT_EVENT_ACTION_START_RANGE + 1; public static final int FLOW_CONSTRUCT_STARTED = FLOW_CONSTRUCT_EVENT_ACTION_START_RANGE + 2; public static final int FLOW_CONSTRUCT_STOPPED = FLOW_CONSTRUCT_EVENT_ACTION_START_RANGE + 3; public static final int FLOW_CONSTRUCT_PAUSED = FLOW_CONSTRUCT_EVENT_ACTION_START_RANGE + 4; public static final int FLOW_CONSTRUCT_RESUMED = FLOW_CONSTRUCT_EVENT_ACTION_START_RANGE + 5; public static final int FLOW_CONSTRUCT_DISPOSED = FLOW_CONSTRUCT_EVENT_ACTION_START_RANGE + 6; static { registerAction("flow construct initialised", FLOW_CONSTRUCT_INITIALISED); registerAction("flow construct started", FLOW_CONSTRUCT_STARTED); registerAction("flow construct stopped", FLOW_CONSTRUCT_STOPPED); registerAction("flow construct paused", FLOW_CONSTRUCT_PAUSED); registerAction("flow construct resumed", FLOW_CONSTRUCT_RESUMED); registerAction("flow construct disposed", FLOW_CONSTRUCT_DISPOSED); } public FlowConstructNotification(FlowConstruct flowConstruct, int action) { super(flowConstruct.getName(), action); resourceIdentifier = flowConstruct.getName(); } }