1 /* 2 * $Id: ProcessComponent.java 11566 2008-04-11 12:15:16Z tcarlson $ 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.transport.bpm; 12 13 import org.mule.api.MuleEvent; 14 import org.mule.api.MuleMessage; 15 import org.mule.component.AbstractComponent; 16 17 import org.apache.commons.lang.NotImplementedException; 18 19 // TODO MULE-3205 20 public class ProcessComponent extends AbstractComponent 21 { 22 //@Override 23 protected MuleMessage doOnCall(MuleEvent event) throws Exception 24 { 25 throw new NotImplementedException(); 26 } 27 28 } 29 30