/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.integration.ejb.ejb2.reference.annotation; import javax.ejb.EJB; import javax.ejb.EJBs; import javax.ejb.Local; import javax.ejb.LocalHome; import javax.ejb.Remote; import javax.ejb.RemoteHome; import javax.ejb.Stateless; import javax.naming.InitialContext; import org.jboss.as.test.integration.ejb.ejb2.reference.global.Session21; import org.jboss.as.test.integration.ejb.ejb2.reference.global.Session21Home; import org.jboss.as.test.integration.ejb.ejb2.reference.global.Session30RemoteBusiness; import org.jboss.logging.Logger; /** * @author <a href="mailto:bdecoste@jboss.com">William DeCoste</a> */ @Stateless(name = "Session30") @Remote(Session30RemoteBusiness.class) @Local(LocalSession30Business.class) @RemoteHome(Session30Home.class) @LocalHome(Session30LocalHome.class) @EJBs({@EJB(name = "injected", beanInterface = Session21Home.class, beanName = "Session21")}) public class Session30Bean implements Session30RemoteBusiness, LocalSession30Business { private static final Logger log = Logger.getLogger(Session30Bean.class); public String access() { return "Session30"; } public String access21() { try { InitialContext jndiContext = new InitialContext(); Session21Home sessionHome = (Session21Home) jndiContext.lookup("java:comp/env/injected"); Session21 session = sessionHome.create(); return session.access(); } catch (Exception e) { throw new RuntimeException(e); } } public String globalAccess21() { try { InitialContext jndiContext = new InitialContext(); Session21Home home = (Session21Home) jndiContext.lookup("java:module/Session21!" + Session21Home.class.getName()); Session21 session = home.create(); return session.access(); } catch (Exception e) { throw new RuntimeException(e); } } public String accessLocalStateful() { try { InitialContext jndiContext = new InitialContext(); StatefulSession30LocalHome localHome = (StatefulSession30LocalHome) jndiContext.lookup("java:module/StatefulSession30!" + StatefulSession30LocalHome.class.getName()); LocalStatefulSession30 localSession = localHome.create(); return localSession.getLocalValue(); } catch (Exception e) { throw new RuntimeException(e); } } public String accessLocalStateful(String value) { try { InitialContext jndiContext = new InitialContext(); StatefulSession30LocalHome localHome = (StatefulSession30LocalHome) jndiContext.lookup("java:module/StatefulSession30!" + StatefulSession30LocalHome.class.getName()); LocalStatefulSession30 localSession = localHome.create(value); return localSession.getLocalValue(); } catch (Exception e) { e.printStackTrace(); return null; } } public String accessLocalStateful(String value, Integer suffix) { try { InitialContext jndiContext = new InitialContext(); StatefulSession30LocalHome localHome = (StatefulSession30LocalHome) jndiContext.lookup("java:module/StatefulSession30!" + StatefulSession30LocalHome.class.getName()); LocalStatefulSession30 localSession = localHome.create(value, suffix); return localSession.getLocalValue(); } catch (Exception e) { throw new RuntimeException(e); } } }