1 /* 2 * $Id: DefaultLifecycleAdapterFactory.java 7963 2007-08-21 08:53:15Z dirk.olmes $ 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 11 package org.mule.impl; 12 13 import org.mule.umo.UMODescriptor; 14 import org.mule.umo.UMOException; 15 import org.mule.umo.lifecycle.UMOLifecycleAdapter; 16 import org.mule.umo.lifecycle.UMOLifecycleAdapterFactory; 17 import org.mule.umo.model.UMOEntryPointResolver; 18 19 /** 20 * <code>DefaultLifecycleAdapterFactory</code> creates a DefaultLifeCycleAdapter. Users can 21 * implement their own LifeCycleAdapter factories to control lifecycle events on their services such 22 * as introduce other lifecycle events that are controlled by external changes. 23 * 24 * @see org.mule.umo.lifecycle.UMOLifecycleAdapter 25 * @see org.mule.umo.lifecycle.UMOLifecycleAdapterFactory 26 * @see org.mule.impl.DefaultLifecycleAdapter 27 * @see org.mule.impl.DefaultLifecycleAdapterFactory 28 */ 29 public class DefaultLifecycleAdapterFactory implements UMOLifecycleAdapterFactory 30 { 31 public DefaultLifecycleAdapterFactory() 32 { 33 super(); 34 } 35 36 /* 37 * (non-Javadoc) 38 * 39 * @see org.mule.umo.lifecycle.UMOLifecycleAdapterFactory#create(java.lang.Object, 40 * org.mule.umo.UMODescriptor) 41 */ 42 public UMOLifecycleAdapter create(Object component, 43 UMODescriptor descriptor, 44 UMOEntryPointResolver resolver) throws UMOException 45 { 46 return new DefaultLifecycleAdapter(component, descriptor, resolver); 47 } 48 49 }