/* * JBoss, Home of Professional Open Source. * Copyright 2006, Red Hat Middleware LLC, 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.test.foedeployer.ejb.simple; import java.rmi.RemoteException; import javax.ejb.CreateException; import javax.ejb.EJBException; import javax.ejb.FinderException; import javax.ejb.SessionBean; import javax.ejb.SessionContext; import javax.naming.InitialContext; import javax.naming.NamingException; import org.apache.log4j.Category; import org.jboss.test.foedeployer.ejb.simple.SecretLocal; import org.jboss.test.foedeployer.ejb.simple.SecretLocalHome; /** * Secret Manager Session bean. * * @ejb.bean * type="Stateless" * name="SecretManager" * jndi-name="ejb/SecretManager" * view-type="remote" * generate="true" * * @ejb.transaction type="Required" * * @ejb.ejb-ref * ejb-name="Secret" * view-type="local" * * @author Alex Loubyansky */ public class SecretManagerSessionBean implements SessionBean { // Attributes ---------------------------------------------------- private SessionContext context; private static Category log = Category.getInstance( SecretManagerSessionBean.class ); // Public -------------------------------------------------------- /** * Creates a new secret * * @ejb:interface-method */ public void createSecret( String secretKey, String secret ) { SecretLocalHome secretLocalHome = getSecretLocalHome(); try { SecretLocal secretLocal = secretLocalHome.create( secretKey, secret ); } catch( CreateException ce ) { log.info("Exception creating secret with secretKey=" + secretKey, ce); throw new EJBException( "Exception creating secret with secretKey=" + secretKey + ":\n" + ce ); } log.info("Created secret: secretKey=" + secretKey + ", secret=" + secret); } /** * Removes secret * * @ejb:interface-method */ public void removeSecret( String secretKey ) { SecretLocalHome secretLocalHome = getSecretLocalHome(); try { SecretLocal secretLocal = secretLocalHome.findByPrimaryKey( secretKey ); secretLocal.remove(); } catch(Exception re) { log.info("Remove(): secret with secretKey=" + secretKey + " doesn't exist"); throw new EJBException( "Can't remove secret: secret with secretKey=" + secretKey + " doesn't exist" ); } log.info( "Removed secret: secretKey=" + secretKey ); } /** * Returns secret * * @ejb:interface-method */ public String getSecret(String secretKey) { SecretLocalHome secretLocalHome = getSecretLocalHome(); try { SecretLocal secretLocal = secretLocalHome.findByPrimaryKey( secretKey ); return secretLocal.getSecret(); } catch( Exception re ) { log.info( "getSecret(): secret with secretKey=" + secretKey + " doesn't exist" ); throw new EJBException( "Can't find secret with secretKey=" + secretKey ); } } // Private ------------------------------------------------------- private SecretLocalHome getSecretLocalHome() throws EJBException { InitialContext initCtx = null; try { initCtx = new InitialContext(); SecretLocalHome secretLocalHome = (SecretLocalHome) initCtx.lookup("ejb/SecretLocal"); return secretLocalHome; } catch( NamingException ne ) { log.info( "Failed to lookup SecretLocalHome." ); throw new EJBException( ne ); } finally { try { if( initCtx != null ) initCtx.close(); } catch( NamingException ne ) { log.info( "Error closing context: " + ne ); throw new EJBException( ne ); } } } // SessionBean Implementation ------------------------------------ /** * @ejb:create-method */ public void ejbCreate() { } public void setSessionContext(SessionContext sc) { context = sc; } public void unsetSessionContext() { context = null; } public void ejbRemove() { } public void ejbActivate() { } public void ejbPassivate() { } }