1 /*
2 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
3 * The software in this package is published under the terms of the CPAL v1.0
4 * license, a copy of which has been included with this distribution in the
5 * LICENSE.txt file.
6 */
7 package org.mule.lifecycle.phases;
8
9 import org.mule.api.lifecycle.Initialisable;
10
11 /**
12 * This lifecycle phase marks the 'pre-lifecycle' phase of an object. The default phase before
13 * any other phase has been executed
14 */
15 public class NotInLifecyclePhase extends DefaultLifecyclePhase
16 {
17 public static final String PHASE_NAME = "not in lifecycle";
18
19 public NotInLifecyclePhase()
20 {
21 super(PHASE_NAME, NotInLifecyclePhase.class, null);
22 registerSupportedPhase(Initialisable.PHASE_NAME);
23 }
24 }