Package org.jboss.ejb3.proxy.factory.stateful

Source Code of org.jboss.ejb3.proxy.factory.stateful.BaseStatefulProxyFactory

/*
* 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.ejb3.proxy.factory.stateful;

import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;

import javax.naming.Context;
import javax.naming.RefAddr;
import javax.naming.Reference;
import javax.naming.StringRefAddr;

import org.jboss.ejb3.proxy.JndiSessionProxyObjectFactory;
import org.jboss.ejb3.proxy.ProxyFactory;
import org.jboss.ejb3.proxy.factory.BaseSessionProxyFactory;
import org.jboss.ejb3.session.SessionSpecContainer;
import org.jboss.logging.Logger;
import org.jboss.util.naming.Util;

/**
* Comment
*
* @author <a href="mailto:bill@jboss.org">Bill Burke</a>
* @version $Revision: 76905 $
*/
public abstract class BaseStatefulProxyFactory extends BaseSessionProxyFactory implements ProxyFactory
{
   // Class Members
  
   @SuppressWarnings("unused")
   private static final Logger log = Logger.getLogger(BaseStatefulProxyFactory.class);

   public static final String PROXY_FACTORY_NAME = "StatefulProxyFactory";
  
   /**
    * Do not call, only for externalizable
    */
   protected BaseStatefulProxyFactory()
   {
      super();
   }

   public BaseStatefulProxyFactory(SessionSpecContainer container, String jndiName)
   {
      super(container);
     
      assert jndiName != null : "jndiName is null";
     
      this.jndiName = jndiName;
   }
  
   public void init() throws Exception
   {
      // Ensure EJB2.1 View is Complete
      this.validateEjb21Views();
     
      // Create the Proxy Constructors
      this.createProxyConstructors();
   }  

   public void start() throws Exception
   {
      this.init();
     
      // Bind the Proxy Factory
      //Context ctx = getContainer().getInitialContext();
      //Name name = ctx.getNameParser("").parse(jndiName);
      //ctx = Util.createSubcontext(ctx, name.getPrefix(name.size() - 1));
      //String atom = name.get(name.size() - 1);
      Context ctx = getContainer().getInitialContext();
      String jndiName = this.getJndiName();
//      Name name = ctx.getNameParser("").parse(jndiName);
      //ctx = Util.createSubcontext(ctx, name.getPrefix(name.size() - 1));
      //String atom = name.get(name.size() - 1);
      RefAddr refAddr = new StringRefAddr(JndiSessionProxyObjectFactory.REF_ADDR_NAME_JNDI_BINDING_DELEGATE_PROXY_FACTORY, jndiName + PROXY_FACTORY_NAME);
      Reference ref = new Reference(Object.class.getName(), refAddr, JndiSessionProxyObjectFactory.class.getName(), null);
//      try
//      {
//         log.debug("Binding reference for " + getContainer().getEjbName() + " in JNDI at " + jndiName);
//         Util.rebind(ctx, atom, ref);
//      }
//      catch (NamingException e)
//      {
//         NamingException namingException = new NamingException("Could not bind stateful proxy with ejb name "
//               + getContainer().getEjbName() + " into JNDI under jndiName: " + ctx.getNameInNamespace() + "/" + atom);
//         namingException.setRootCause(e);
//         throw namingException;
//      }
     
      this.bindProxy(ref);

   }

   public void stop() throws Exception
   {
      String jndiName = this.getJndiName();
      Util.unbind(getContainer().getInitialContext(), jndiName);
   }

   protected final void initializeJndiName() {};
  
   @Override
   public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
   {
      super.readExternal(in);
      try
      {
         init();
      }
      catch(Exception e)
      {
         log.error(e.getMessage(), e);
         throw new IOException(e.getMessage());
      }
   }
  
   @Override
   public void writeExternal(ObjectOutput out) throws IOException
   {
      super.writeExternal(out);
   }
}
TOP

Related Classes of org.jboss.ejb3.proxy.factory.stateful.BaseStatefulProxyFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.