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

org.jboss.marshalling.serialization.java.JavaSerializationMarshallerFactory Maven / Gradle / Ivy

There is a newer version: 1.2.3.GA
Show newest version
package org.jboss.marshalling.serialization.java;

import java.io.IOException;

import org.jboss.marshalling.AbstractMarshallerFactory;
import org.jboss.marshalling.ClassResolver;
import org.jboss.marshalling.ClassTable;
import org.jboss.marshalling.MarshallingConfiguration;
import org.jboss.marshalling.Marshaller;
import org.jboss.marshalling.ObjectResolver;
import org.jboss.marshalling.ObjectTable;
import org.jboss.marshalling.StreamHeader;
import org.jboss.marshalling.Unmarshaller;
import org.jboss.marshalling.ClassExternalizerFactory;

/**
 * @deprecated This implementation has been superceded by {@link org.jboss.marshalling.serial.SerialMarshallerFactory SerialMarshallerFactory}.
 * @author Ron Sigal
 * @version $Revision: 1.1 $
 * 

* Copyright Sep 19, 2008 *

*/ @Deprecated public final class JavaSerializationMarshallerFactory extends AbstractMarshallerFactory { public JavaSerializationMarshallerFactory() { } public Marshaller createMarshaller(MarshallingConfiguration configuration) throws IOException { return new JavaSerializationMarshaller(this, configuration); } public Unmarshaller createUnmarshaller(MarshallingConfiguration configuration) throws IOException { return new JavaSerializationUnmarshaller(this, configuration); } protected ClassExternalizerFactory getDefaultClassExternalizerFactory() { return null; } protected StreamHeader getDefaultStreamHeader() { return null; } protected ObjectResolver getDefaultObjectResolver() { return null; } protected ClassResolver getDefaultClassResolver() { return null; } protected ClassTable getDefaultClassTable() { return null; } protected ObjectTable getDefaultObjectTable() { return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy