Class OutputPart
- java.lang.Object
-
- org.jboss.resteasy.plugins.providers.multipart.OutputPart
-
public class OutputPart extends Object
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Constructor Summary
Constructors Constructor Description OutputPart(Object entity, Class<?> type, Type genericType, MediaType mediaType)OutputPart(Object entity, Class<?> type, Type genericType, MediaType mediaType, String filename)OutputPart(Object entity, Class<?> type, Type genericType, MediaType mediaType, String filename, boolean utf8Encode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectgetEntity()StringgetFilename()TypegetGenericType()MultivaluedMap<String,Object>getHeaders()MediaTypegetMediaType()Class<?>getType()booleanisUtf8Encode()
-
-
-
Method Detail
-
getHeaders
public MultivaluedMap<String,Object> getHeaders()
-
getEntity
public Object getEntity()
-
getType
public Class<?> getType()
-
getGenericType
public Type getGenericType()
-
getMediaType
public MediaType getMediaType()
-
getFilename
public String getFilename()
-
isUtf8Encode
public boolean isUtf8Encode()
-
-