public class StringMarshaller extends Object implements Marshaller<String>
FORMAT_OUTPUT
Constructor and Description |
---|
StringMarshaller() |
Modifier and Type | Method and Description |
---|---|
void |
marshal(String oValue,
OutputStream out,
javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders)
Write the specified object into the given stream.
|
String |
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(String oValue, OutputStream out, javax.ws.rs.core.MultivaluedMap<String,Object> httpHeaders) throws IOException
Marshaller
marshal
in interface Marshaller<String>
oValue
- 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 String unmarshal(InputStream in, javax.ws.rs.core.MediaType mediaType) throws IOException
Marshaller
unmarshal
in interface Marshaller<String>
in
- stream to read frommediaType
- the media type of the object to readIOException
- if an error occurs during unmarshalling