public final class HttpMarshallerFactory extends Object
Marshaller objects for reading and writing requests and responses objects as bytes.| Modifier and Type | Method and Description |
|---|---|
org.jboss.marshalling.Marshaller |
createMarshaller()
Creates a simple
Marshaller. |
org.jboss.marshalling.Marshaller |
createMarshaller(org.jboss.marshalling.ClassResolver resolver,
org.jboss.marshalling.ObjectTable table)
Creates a
Marshaller configured with a class resolver and an object table. |
org.jboss.marshalling.Marshaller |
createMarshaller(org.jboss.marshalling.ObjectResolver resolver)
Creates a
Marshaller configured with an object resolver. |
org.jboss.marshalling.Marshaller |
createMarshaller(org.jboss.marshalling.ObjectResolver resolver,
org.jboss.marshalling.ObjectTable table)
Creates a
Marshaller configured with an object resolver and an object table. |
org.jboss.marshalling.Marshaller |
createMarshaller(org.jboss.marshalling.ObjectTable table)
Creates a
Marshaller configured with an object table. |
org.jboss.marshalling.Unmarshaller |
createUnmarshaller()
Creates a simple
Unmarshaller. |
org.jboss.marshalling.Unmarshaller |
createUnmarshaller(ClassLoader cl)
Creates an
Unmarshaller configured with a class resolver. |
org.jboss.marshalling.Unmarshaller |
createUnmarshaller(org.jboss.marshalling.ClassResolver resolver)
Creates an
Unmarshaller configured with a class resolver. |
org.jboss.marshalling.Unmarshaller |
createUnmarshaller(org.jboss.marshalling.ClassResolver resolver,
org.jboss.marshalling.ObjectTable table)
Creates an
Unmarshaller configured with a class resolver and an object table. |
org.jboss.marshalling.Unmarshaller |
createUnmarshaller(org.jboss.marshalling.ObjectResolver resolver)
Creates an
Unmarshaller configured with an object resolver. |
org.jboss.marshalling.Unmarshaller |
createUnmarshaller(org.jboss.marshalling.ObjectResolver resolver,
org.jboss.marshalling.ObjectTable table)
Creates an
Unmarshaller configured with an object resolver and an object table. |
org.jboss.marshalling.Unmarshaller |
createUnmarshaller(org.jboss.marshalling.ObjectTable table)
Creates an
Unmarshaller configured with an object table. |
public org.jboss.marshalling.Marshaller createMarshaller()
throws IOException
Marshaller.IOException - if an I/O error occurs during marshaller creationpublic org.jboss.marshalling.Marshaller createMarshaller(@NotNull
org.jboss.marshalling.ObjectResolver resolver)
throws IOException
Marshaller configured with an object resolver.resolver - responsible for substituting objects when marshalling.IOException - if an I/O error occurs during marshaller creationpublic org.jboss.marshalling.Marshaller createMarshaller(@NotNull
org.jboss.marshalling.ObjectTable table)
throws IOException
Marshaller configured with an object table.table - the object table used by the marshallerIOException - if an I/O error occurs during marshaller creationpublic org.jboss.marshalling.Marshaller createMarshaller(@NotNull
org.jboss.marshalling.ObjectResolver resolver,
@NotNull
org.jboss.marshalling.ObjectTable table)
throws IOException
Marshaller configured with an object resolver and an object table.resolver - responsible for substituting objects when marshallingtable - the object table used by the marshallerIOException - if an I/O error occurs during marshaller creationpublic org.jboss.marshalling.Marshaller createMarshaller(@NotNull
org.jboss.marshalling.ClassResolver resolver,
@NotNull
org.jboss.marshalling.ObjectTable table)
throws IOException
Marshaller configured with a class resolver and an object table.resolver - class annotator and resolvertable - the object table used by the marshallerIOException - if an I/O error occurs during marshaller creationpublic org.jboss.marshalling.Unmarshaller createUnmarshaller()
throws IOException
Unmarshaller.IOException - if an I/O error occurs during unmarshaller creationpublic org.jboss.marshalling.Unmarshaller createUnmarshaller(@NotNull
org.jboss.marshalling.ObjectResolver resolver)
throws IOException
Unmarshaller configured with an object resolver.resolver - responsible for substituting objects when unmarshalling.IOException - if an I/O error occurs during unmarshaller creationpublic org.jboss.marshalling.Unmarshaller createUnmarshaller(@NotNull
org.jboss.marshalling.ClassResolver resolver)
throws IOException
Unmarshaller configured with a class resolver.resolver - class annotator and resolverIOException - if an I/O error occurs during unmarshaller creationpublic org.jboss.marshalling.Unmarshaller createUnmarshaller(@NotNull
ClassLoader cl)
throws IOException
Unmarshaller configured with a class resolver.cl - the class loader that will be used by the class resolverIOException - if an I/O error occurs during unmarshaller creationpublic org.jboss.marshalling.Unmarshaller createUnmarshaller(@NotNull
org.jboss.marshalling.ObjectTable table)
throws IOException
Unmarshaller configured with an object table.table - the object table used by the marshallerIOException - if an I/O error occurs during unmarshaller creationpublic org.jboss.marshalling.Unmarshaller createUnmarshaller(@NotNull
org.jboss.marshalling.ObjectResolver resolver,
@NotNull
org.jboss.marshalling.ObjectTable table)
throws IOException
Unmarshaller configured with an object resolver and an object table.resolver - responsible for substituting objects when unmarshalling.table - the object table used by the marshallerIOException - if an I/O error occurs during unmarshaller creationpublic org.jboss.marshalling.Unmarshaller createUnmarshaller(@NotNull
org.jboss.marshalling.ClassResolver resolver,
@NotNull
org.jboss.marshalling.ObjectTable table)
throws IOException
Unmarshaller configured with a class resolver and an object table.resolver - class annotator and resolvertable - the object table used by the marshallerIOException - if an I/O error occurs during unmarshaller creationCopyright © 2022 JBoss by Red Hat. All rights reserved.