public class BinaryMarshaller extends Object implements Marshaller<Binary>
Binary
and vice versa.FORMAT_OUTPUT
Constructor and Description |
---|
BinaryMarshaller() |
Modifier and Type | Method and Description |
---|---|
void |
marshal(Binary value,
OutputStream out,
javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders)
Write the specified object into the given stream.
|
Binary |
unmarshal(InputStream in,
javax.ws.rs.core.MediaType mediaType)
Read an object from the specified stream.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
marshalAsFragment
public void marshal(Binary value, OutputStream out, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders) throws IOException
Marshaller
marshal
in interface Marshaller<Binary>
value
- object to marshallout
- the OutputStream
for the HTTP entity. The
implementation should not close the output stream.httpHeaders
- a mutable map of the HTTP message headers.IOException
- if an error occurs during marshallingpublic Binary unmarshal(InputStream in, javax.ws.rs.core.MediaType mediaType) throws IOException
Marshaller
unmarshal
in interface Marshaller<Binary>
in
- stream to read frommediaType
- the media type of the object to readIOException
- if an error occurs during unmarshalling