blob: d77c1944e1189bc5c8c8c121a7502fa01b629e99 [file] [log] [blame]
/*
* Copyright (c) 2002, 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 beans;
import connector.MyAdminObject;
import javax.rmi.PortableRemoteObject;
import jakarta.ejb.SessionBean;
import jakarta.ejb.SessionContext;
import jakarta.ejb.EJBException;
import jakarta.ejb.CreateException;
import java.rmi.RemoteException;
import javax.naming.*;
public class WorkTestEJB implements SessionBean {
private MyAdminObject Controls;
public WorkTestEJB() {}
public void ejbCreate()
throws CreateException {
System.out.println("bean removed");
}
public void executeTest() {
try {
Controls.setup();
Controls.submit();
Controls.triggerWork();
Controls.checkResult();
} catch (Exception e) {
e.printStackTrace(System.out);
throw new EJBException(e);
}
}
public void setSessionContext(SessionContext context) {
try {
Context ic = new InitialContext();
Controls = (MyAdminObject) ic.lookup("java:comp/env/eis/testAdmin");
} catch (Exception ex) {
ex.printStackTrace();
}
}
public void ejbRemove() {
System.out.println("bean removed");
}
public void ejbActivate() {
System.out.println("bean activated");
}
public void ejbPassivate() {
System.out.println("bean passivated");
}
private void debug(String msg) {
System.out.println("[MessageCheckerEJB]:: -> " + msg);
}
}