Package org.apache.juneau.httppart.bean
Class RequestBeanPropertyMeta
java.lang.Object
org.apache.juneau.httppart.bean.RequestBeanPropertyMeta
Represents the metadata gathered from a getter method of a class annotated with 
Request.
 See Also:
- 
Method SummaryModifier and TypeMethodDescriptionReturns the name of the Java method getter that defines this property.getParser(HttpPartParserSession _default) Returns the parser to use for parsing the bean property value.Returns the HTTP part name for this property (query parameter name for example).Returns the HTTP part type for this property (query parameter for example).Returns the schema information gathered from annotations on the method and return type.Returns the serializer to use for serializing the bean property value.
- 
Method Details- 
getPartNameReturns the HTTP part name for this property (query parameter name for example).- Returns:
- The HTTP part name, or null if it doesn't have a part name.
 
- 
getGetterReturns the name of the Java method getter that defines this property.- Returns:
- The name of the Java method getter that defines this property.
   
 Nevernull .
 
- 
getPartTypeReturns the HTTP part type for this property (query parameter for example).- Returns:
- The HTTP part type for this property.
   
 Nevernull .
 
- 
getSerializerReturns the serializer to use for serializing the bean property value.- Returns:
- The serializer to use for serializing the bean property value.
 
- 
getParserReturns the parser to use for parsing the bean property value.- Parameters:
- _default- The default parsing to use if not defined on the annotation.
- Returns:
- The parsing to use for serializing the bean property value.
 
- 
getSchemaReturns the schema information gathered from annotations on the method and return type.- Returns:
- The schema information gathered from annotations on the method and return type.
   
 Nevernull .
 
 
-