Package org.apache.juneau.rest.httppart
Class ResponsePartMeta
java.lang.Object
org.apache.juneau.rest.httppart.ResponsePartMeta
Represents the information needed to serialize a response part such as a response header or content.
 
See Also:
- 
Field SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionResponsePartMeta(HttpPartType partType, HttpPartSchema schema, HttpPartSerializer serializer) Constructor.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the part type.Returns the part schema.Returns the part serializer.
- 
Field Details- 
NULLRepresents a non-existent meta.
 
- 
- 
Constructor Details- 
ResponsePartMetapublic ResponsePartMeta(HttpPartType partType, HttpPartSchema schema, HttpPartSerializer serializer) Constructor.- Parameters:
- partType- The part type.
- schema- The part schema.
- serializer- The serializer to use to serialize the part.
 
 
- 
- 
Method Details- 
getPartTypeReturns the part type.- Returns:
- The part type.
 
- 
getSchemaReturns the part schema.- Returns:
- The part schema.
 
- 
getSerializerReturns the part serializer.- Returns:
- The part serializer.
 
 
-