[jboss-cvs] JBossAS SVN: r69237 - projects/aop/trunk/aop/src/main/org/jboss/aop/proxy/container.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jan 23 08:15:22 EST 2008


Author: kabir.khan at jboss.com
Date: 2008-01-23 08:15:22 -0500 (Wed, 23 Jan 2008)
New Revision: 69237

Removed:
   projects/aop/trunk/aop/src/main/org/jboss/aop/proxy/container/MarshalledProxy.java
Log:
Not used

Deleted: projects/aop/trunk/aop/src/main/org/jboss/aop/proxy/container/MarshalledProxy.java
===================================================================
--- projects/aop/trunk/aop/src/main/org/jboss/aop/proxy/container/MarshalledProxy.java	2008-01-23 12:31:59 UTC (rev 69236)
+++ projects/aop/trunk/aop/src/main/org/jboss/aop/proxy/container/MarshalledProxy.java	2008-01-23 13:15:22 UTC (rev 69237)
@@ -1,63 +0,0 @@
-/*
-* JBoss, Home of Professional Open Source
-* Copyright 2005, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt 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.aop.proxy.container;
-
-import java.io.ObjectStreamException;
-import java.io.Serializable;
-
-import org.jboss.aop.InstanceAdvisor;
-
-/**
- * 
- * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
- * @version $Revision$
- */
-public class MarshalledProxy implements Serializable
-{
-   private ContainerProxyCacheKey key;
-   private InstanceAdvisor instanceAdvisor;
-
-   public MarshalledProxy()
-   {
-   }
-   
-   public MarshalledProxy(ContainerProxyCacheKey key, InstanceAdvisor instanceAdvisor)
-   {
-      this.key = key;
-      this.instanceAdvisor = instanceAdvisor;
-   }
-
-   public Object readResolve() throws ObjectStreamException
-   {
-      try
-      {
-         //TODO Eventually we should get the correct domain, and not use the aspect manager instance
-         return ContainerProxyFactory.getProxyClass(false, key, null);
-      }
-      catch (Exception e)
-      {
-         throw new RuntimeException(e);
-      }
-   }
-
-
-}




More information about the jboss-cvs-commits mailing list