blob: 8a30968a6a4fcf8378e32bb54d765411c4f8319c [file] [log] [blame]
/*
* 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 jakarta.ejb.EJB;
import jakarta.ejb.EJBContext;
import jakarta.ejb.Remote;
import jakarta.ejb.Stateful;
import jakarta.ejb.TransactionAttribute;
import jakarta.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;
}
}