Package com.caucho.ejb.gen

Examples of com.caucho.ejb.gen.SingletonGenerator


          getLocalList(), getRemoteList());
    } else if (Stateful.class.equals(getSessionType())) {
      _sessionBean = new StatefulGenerator(getEJBName(), ejbClass,
          getLocalList(), getRemoteList());
    } else if (Singleton.class.equals(getSessionType())){
      _sessionBean = new SingletonGenerator(getEJBName(), ejbClass,
          getLocalList(), getRemoteList());
    }

    return _sessionBean;
  }
View Full Code Here

TOP

Related Classes of com.caucho.ejb.gen.SingletonGenerator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.