|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface RequestInputs
RequestInputs Accessor (not creation) methods for Request Inputs. This interface is intended to mirror that supplied by the Servlet Engine (container) and it's implementation of the Standard Servlet API HttpServletRequest's use of getParameter()... but specifically for Factory Web Engine request inputs.
Method Summary | |
---|---|
java.util.Iterator |
getInputNames()
Get an Iterator of all the input names found in the request. |
java.lang.String |
getInputValue(java.lang.String name)
Get the FIRST value associated with the specified input name ONLY use this method if you are certain there's only one input value with this particular name. |
java.util.Iterator |
getInputValues(java.lang.String name)
Get an Iterator of values for a specified input name |
Method Detail |
---|
java.util.Iterator getInputNames()
java.lang.String getInputValue(java.lang.String name)
name
- The key used to look up a particular input value
java.util.Iterator getInputValues(java.lang.String name)
name
- The name corresponding to an Iterator of input values
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |