|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.fulcrum.parser.BaseValueParser
org.apache.fulcrum.parser.DefaultParameterParser
public class DefaultParameterParser
DefaultParameterParser is a utility object to handle parsing and retrieving the data passed via the GET/POST/PATH_INFO arguments.
NOTE: The name= portion of a name=value pair may be converted to lowercase or uppercase when the object is initialized and when new data is added. This behaviour is determined by the url.case.folding property in TurbineResources.properties. Adding a name/value pair may overwrite existing name=value pairs if the names match:
ParameterParser pp = data.getParameters(); pp.add("ERROR",1); pp.add("eRrOr",2); int result = pp.getInt("ERROR");In the above example, result is 2.
Field Summary |
---|
Fields inherited from class org.apache.fulcrum.parser.BaseValueParser |
---|
parameters, parserService |
Fields inherited from interface org.apache.fulcrum.parser.ValueParser |
---|
DEFAULT_CHARACTER_ENCODING |
Constructor Summary | |
---|---|
DefaultParameterParser()
Create a new empty instance of ParameterParser. |
|
DefaultParameterParser(String characterEncoding)
Create a new empty instance of ParameterParser. |
Method Summary | |
---|---|
void |
add(String name,
org.apache.commons.fileupload.FileItem value)
Add a FileItem object as a parameters. |
void |
append(String name,
org.apache.commons.fileupload.FileItem value)
Deprecated. Use add(String name, FileItem item) |
void |
dispose()
Disposes the parser. |
org.apache.commons.fileupload.FileItem |
getFileItem(String name)
Return a FileItem object for the given name. |
org.apache.commons.fileupload.FileItem[] |
getFileItems(String name)
Return an array of FileItem objects for the given name. |
javax.servlet.http.HttpServletRequest |
getRequest()
Gets the parsed servlet request. |
byte[] |
getUploadData()
Gets the uploadData byte[] |
void |
setRequest(javax.servlet.http.HttpServletRequest request)
Sets the servlet request to the parser. |
void |
setUploadData(byte[] uploadData)
Sets the uploadData byte[] |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface org.apache.fulcrum.parser.ValueParser |
---|
add, add, add, add, add, add, clear, containsKey, convert, convertAndTrim, convertAndTrim, get, getBigDecimal, getBigDecimal, getBigDecimals, getBoolean, getBoolean, getBooleanObject, getBooleanObject, getBooleanObjects, getBooleans, getByte, getByte, getByteObject, getByteObject, getBytes, getCharacterEncoding, getDate, getDate, getDate, getDateFormat, getDouble, getDouble, getDoubleObject, getDoubleObject, getDoubleObjects, getDoubles, getFloat, getFloat, getFloatObject, getFloatObject, getFloatObjects, getFloats, getInt, getInt, getIntObject, getIntObject, getIntObjects, getInts, getKeys, getLocale, getLong, getLong, getLongObject, getLongObject, getLongObjects, getLongs, getNumberFormat, getObject, getObjects, getString, getString, getStrings, getStrings, getUrlFolding, keySet, remove, setCharacterEncoding, setDateFormat, setLocale, setNumberFormat, setProperties, setString, setStrings, toString |
Constructor Detail |
---|
public DefaultParameterParser()
To add name/value pairs to this set of parameters, use the
add()
methods.
public DefaultParameterParser(String characterEncoding)
To add name/value pairs to this set of parameters, use the
add()
methods.
characterEncoding
- The character encoding of strings.Method Detail |
---|
public void dispose()
dispose
in interface org.apache.fulcrum.pool.Recyclable
dispose
in class BaseValueParser
public javax.servlet.http.HttpServletRequest getRequest()
getRequest
in interface ParameterParser
public void setRequest(javax.servlet.http.HttpServletRequest request)
To add name/value pairs to this set of parameters, use the
add()
methods.
setRequest
in interface ParameterParser
request
- An HttpServletRequest.public void setUploadData(byte[] uploadData)
setUploadData
in interface ParameterParser
uploadData
- A byte[] with data.public byte[] getUploadData()
getUploadData
in interface ParameterParser
public void append(String name, org.apache.commons.fileupload.FileItem value)
append
in interface ParameterParser
name
- A String with the name.value
- A FileItem with the value.public void add(String name, org.apache.commons.fileupload.FileItem value)
name
- A String with the name.value
- A FileItem with the value.public org.apache.commons.fileupload.FileItem getFileItem(String name)
getFileItem
in interface ParameterParser
name
- A String with the name.
public org.apache.commons.fileupload.FileItem[] getFileItems(String name)
getFileItems
in interface ParameterParser
name
- A String with the name.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |