All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.remoting.marshal.rmi.RMIUnMarshaller Maven / Gradle / Ivy

There is a newer version: 5.0.29.Final
Show newest version
/*
* 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.remoting.marshal.rmi;

import java.io.IOException;
import java.io.InputStream;
import java.util.Map;
import org.jboss.remoting.marshal.UnMarshaller;

/**
 * This basically does nothing since RMI will handle marshalling by
 * default.  Is only here as a place holder.
 *
 * @author Tom Elrod
 */
public class RMIUnMarshaller implements UnMarshaller
{

   static final long serialVersionUID = -6342200977048213419L;

   public final static String DATATYPE = "rmi";

   /**
    * Will read from the inputstream and converty contents to java Object.
    *
    * @param inputStream stream to read data from to do conversion
    * @param metadata    can be any transport specific metadata (such as headers from http transport).
    *                    This can be null, depending on if transport supports metadata.
    * @return
    * @throws java.io.IOException    all specific i/o exceptions need to be thrown as this.
    * @throws ClassNotFoundException will be thrown if during the unmarshalling process can not find a specific class
    *                                within classloader.
    */
   public Object read(InputStream inputStream, Map metadata) throws IOException, ClassNotFoundException
   {
      return null;  //NO OP
   }

   /**
    * Set the class loader to use for unmarhsalling.  This may
    * be needed when need to have access to class definitions that
    * are not part of this unmarshaller's parent classloader (especially
    * when doing remote classloading).
    *
    * @param classloader
    */
   public void setClassLoader(ClassLoader classloader)
   {
      //NO OP
   }

   public UnMarshaller cloneUnMarshaller() throws CloneNotSupportedException
   {
      return new RMIUnMarshaller();
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy