| /* |
| * Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved. |
| * |
| * This program and the accompanying materials are made available under the |
| * terms of the Eclipse Public License v. 2.0, which is available at |
| * http://www.eclipse.org/legal/epl-2.0. |
| * |
| * This Source Code may also be made available under the following Secondary |
| * Licenses when the conditions for such availability set forth in the |
| * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| * version 2 with the GNU Classpath Exception, which is available at |
| * https://www.gnu.org/software/classpath/license.html. |
| * |
| * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| */ |
| |
| package test.ejb; |
| |
| import jakarta.annotation.Resource; |
| import javax.ejb.EJB; |
| import javax.ejb.EJBContext; |
| import javax.ejb.Remote; |
| import javax.ejb.Stateful; |
| import javax.ejb.TransactionAttribute; |
| import javax.ejb.TransactionAttributeType; |
| import javax.sql.DataSource; |
| |
| /** |
| * @author Shing Wai Chan |
| */ |
| @Stateful(name="myStatefulTest") |
| @Resource(name="myDataSource1", type=DataSource.class) |
| @Remote({SFHello1.class}) |
| public class StatefulTest1 extends StatefulTest implements SFHello1 { |
| @EJB private SFHello sfHello; |
| private EJBContext ejbContext; |
| private EJBContext ejbContext2; |
| |
| public StatefulTest1() { |
| } |
| |
| @TransactionAttribute(value=TransactionAttributeType.MANDATORY) |
| public String sayHello(String message) { |
| return super.sayHello(message); |
| } |
| |
| public String sayBye(String message) { |
| return "Good bye, " + message + "!"; |
| } |
| |
| @Resource(name="sfEjbContext") |
| private void setEjbContext(EJBContext context) { |
| ejbContext = context; |
| } |
| |
| @Resource(name="sfEjbContext2") |
| void setEjbContext2(EJBContext context) { |
| ejbContext = context; |
| } |
| |
| @Resource(name="sfEjbContext3") |
| public void setEjbContext3(EJBContext context) { |
| ejbContext = context; |
| } |
| } |