1 /* JFox, the OpenSource J2EE Application Server2 *3 * Distributable under GNU LGPL license by gun.org4 * more details please visit http://www.huihoo.org/jfox5 */6 7 package org.jfox.ejb;8 9 import javax.ejb.EJBMetaData ;10 11 import org.jfox.ejb.meta.EJBDescriptor;12 13 /**14 * 包含一个 bucket 的所有数据15 *16 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>17 */18 19 public interface BucketMeta {20 /**21 * 得到 EJBMetaData ,包括最简单的 Bean 信息22 *23 * @return24 */25 EJBMetaData getEJBMetaData();26 27 /**28 * 得到这个 BeanBucket 所包含的 ejb 的 bean class29 *30 * @return31 */32 Class getBeanClass();33 34 /**35 * 得到该 Bean 的部署描述信息36 *37 * @return38 */39 EJBDescriptor getEJBDescriptor();40 }