| /* |
| * 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 com.sun.s1peqe.ejb.stateless.converter.ejb; |
| |
| import java.util.Collection; |
| import java.rmi.RemoteException; |
| import javax.ejb.SessionBean; |
| import javax.ejb.SessionContext; |
| import javax.ejb.TimedObject; |
| import javax.ejb.TimerService; |
| import javax.ejb.Timer; |
| import javax.ejb.TimerHandle; |
| import javax.ejb.EJBException; |
| import javax.xml.parsers.*; |
| |
| /** |
| * A simple stateless bean for the Converter application. This bean implements all |
| * business method as declared by the remote interface, <code>Converter</code>. |
| * |
| * @see Converter |
| * @see ConverterHome |
| */ |
| public class ConverterBean implements SessionBean, TimedObject { |
| |
| SessionContext sessionContext_; |
| |
| public String getParserFactoryClassName() { |
| String parserFactoryClassName = (SAXParserFactory.newInstance()).getClass().getName(); |
| System.out.println("ParserFactoryClassName" + parserFactoryClassName); |
| return parserFactoryClassName; |
| } |
| |
| |
| /** |
| * Required by EJB spec. |
| */ |
| public ConverterBean() { |
| } |
| |
| /** |
| * Creates a bean. Required by EJB spec. |
| * @exception throws CreateException. |
| */ |
| public void ejbCreate() {} |
| |
| /** |
| * Removes the bean. Required by EJB spec. |
| */ |
| public void ejbRemove() {} |
| |
| /** |
| * Loads the state of the bean from secondary storage. Required by EJB spec. |
| */ |
| public void ejbActivate() {} |
| |
| /** |
| * Keeps the state of the bean to secondary storage. Required by EJB spec. |
| */ |
| public void ejbPassivate() {} |
| |
| /** |
| * Sets the session context. Required by EJB spec. |
| * @param ctx A SessionContext object. |
| */ |
| public void setSessionContext(SessionContext sc) { |
| sessionContext_ = sc; |
| } |
| |
| public void ejbTimeout(Timer t) {} |
| |
| } // ConverterBean |