1 /*2 * JFox - The most lightweight Java EE Application Server!3 * more details please visit http://www.huihoo.org/jfox or http://www.jfox.org.cn.4 *5 * JFox is licenced and re-distributable under GNU LGPL.6 */7 package org.jfox.manager.demo;8 9 import javax.ejb.Stateless ;10 import javax.ejb.Remote ;11 12 /**13 * @author <a HREF="mailto:jfox.young@gmail.com">Young Yang</a>14 */15 @Stateless 16 @Remote 17 public class CartsImpl implements ICarts{18 19 public static void main(String [] args) {20 21 }22 }23