Package com.caucho.ejb.gen

Examples of com.caucho.ejb.gen.StatelessGenerator


    ApiClass ejbClass = getEJBClassWrapper();

    fillClassDefaults(ejbClass);

    if (Stateless.class.equals(getSessionType())) {
      _sessionBean = new StatelessGenerator(getEJBName(), ejbClass,
          getLocalList(), getRemoteList());
    } else if (Stateful.class.equals(getSessionType())) {
      _sessionBean = new StatefulGenerator(getEJBName(), ejbClass,
          getLocalList(), getRemoteList());
    } else if (Singleton.class.equals(getSessionType())){
View Full Code Here

TOP

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

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.