1 /* 2 * $Id: MuleContextInitialisePhase.java 10489 2008-01-23 17:53:38Z dfeist $ 3 * -------------------------------------------------------------------------------------- 4 * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com 5 * 6 * The software in this package is published under the terms of the CPAL v1.0 7 * license, a copy of which has been included with this distribution in the 8 * LICENSE.txt file. 9 */ 10 package org.mule.lifecycle.phases; 11 12 import org.mule.api.lifecycle.Disposable; 13 import org.mule.api.lifecycle.Initialisable; 14 import org.mule.lifecycle.ContainerManagedLifecyclePhase; 15 16 /** 17 * Since all objects are created and initialised in the registry, the Initialise lifecyclePhase is always 18 * taken care of by the Registry, hence this class extends {@link org.mule.lifecycle.ContainerManagedLifecyclePhase} 19 */ 20 public class MuleContextInitialisePhase extends ContainerManagedLifecyclePhase 21 { 22 public MuleContextInitialisePhase() 23 { 24 super(Initialisable.PHASE_NAME, Initialisable.class, Disposable.PHASE_NAME); 25 } 26 }