1 /*2 * Copyright (c) 2004 Your Corporation. All Rights Reserved.3 */4 5 package org.jfox.ejb.connector;6 7 import org.jfox.ioc.connector.Container;8 9 /**10 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>11 */12 13 public interface EJBContainer extends Container{14 15 /**16 * Ö´ÐÐEJBµ÷ÓÃ17 * @param invocation18 * @return19 * @throws Exception20 */21 Object invoke(EJBInvocation invocation) throws Exception ;22 23 }24