Uses of Class
org.makumba.commons.attributes.HttpParameters

Packages that use HttpParameters
org.makumba.commons.attributes   
org.makumba.forms.html   
 

Uses of HttpParameters in org.makumba.commons.attributes
 

Subclasses of HttpParameters in org.makumba.commons.attributes
 class MultipartHttpParameters
          Parses the input stream of a http request as a multipart/form-data.
 

Methods in org.makumba.commons.attributes that return HttpParameters
static HttpParameters RequestAttributes.getParameters(HttpServletRequest req)
           
static HttpParameters RequestAttributes.makeParameters(HttpServletRequest req, Map<Object,Object> reloadedParams)
           
 

Uses of HttpParameters in org.makumba.forms.html
 

Methods in org.makumba.forms.html with parameters of type HttpParameters
 Object intEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters par, String suffix)
           
 Object booleanEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters par, String suffix)
           
 Object dateEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters pr, String suffix)
           
 Object setintEnumEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters par, String suffix)
           
 Object ptrEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters p, String suffix)
           
 Object setEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters p, String suffix)
           
 Object realEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters par, String suffix)
           
 Object intEnumEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters par, String suffix)
           
 Object FieldEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters p, String suffix)
          Reads, converts and validates the value present in the HttpParameters, for the FieldEditor indicated by the given index.
 Object intEnumEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters p, String suffix, boolean allowMultipleValues)
          allowMultipleValues indicates that we still require an integer type, but we accept multiple values
 Object FieldEditor.readFrom(RecordFormatter rf, int fieldIndex, HttpParameters p, String suffix, boolean allowMultipleValues)
          As FieldEditor.readFrom(RecordFormatter, int, HttpParameters, String), but if indicated, then allowing multiple values of the type, which might be needed e.g. for certain types/editors in search forms.
static Object dateEditor.readFrom(String name, HttpParameters pr)
          This method is used to get the date field in case of a form reload due to validation errors (or in search forms), and is used from BasicValueTag#doMakumbaEndTag(org.makumba.commons.formatters.jsptaglib.PageCache).