|
|||||||||
| Home >> All >> com >> tripi >> [ asp overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
com.tripi.asp
Class Request.QueryStringObj

java.lang.Objectcom.tripi.asp.Request.QueryStringObj
- All Implemented Interfaces:
- SimpleMap, SimpleReference
- Enclosing class:
- Request
- public static class Request.QueryStringObj
- extends java.lang.Object
- implements SimpleMap, SimpleReference
- extends java.lang.Object
QueryStringObj implements the Request.QueryString object.
| Nested Class Summary | |
(package private) class |
Request.QueryStringObj.QueryStringContents
This class handles the Contents varable, which is not defined until it is first accessed. |
| Field Summary | |
AspCollection |
Contents
Collection reference to query string values |
(package private) java.lang.String |
wholeString
The entire query string |
| Constructor Summary | |
Request.QueryStringObj(java.lang.String queryString)
Constructor. |
|
| Method Summary | |
int |
Count()
ASP-Accessible function to obtain the number of items in this query string. |
java.lang.Object |
get(java.lang.Object obj)
SimpleMap read method which obtains the value of a specific parameter in the query string. |
java.util.Enumeration |
getKeys()
Obtains the names of parameters stored in this object. |
java.lang.Object |
getValue()
SimpleReference read method which obtains the full value of this string. |
void |
put(java.lang.Object key,
java.lang.Object value)
SimpleMap write method which stores a value with the specified key. |
void |
setValue(java.lang.Object obj)
SimpleReference write method which always throws an AspReadOnlyException because Request.QueryString objects are read-only. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
Contents
public AspCollection Contents
- Collection reference to query string values
wholeString
java.lang.String wholeString
- The entire query string
| Constructor Detail |
Request.QueryStringObj
public Request.QueryStringObj(java.lang.String queryString)
- Constructor.
| Method Detail |
getValue
public java.lang.Object getValue() throws AspException
- SimpleReference read method which obtains the full value of this string.
- Specified by:
getValuein interfaceSimpleReference
setValue
public void setValue(java.lang.Object obj) throws AspException
- SimpleReference write method which always throws an
AspReadOnlyException because Request.QueryString objects
are read-only.
- Specified by:
setValuein interfaceSimpleReference
get
public java.lang.Object get(java.lang.Object obj) throws AspException
- SimpleMap read method which obtains the value of a specific
parameter in the query string.
put
public void put(java.lang.Object key, java.lang.Object value) throws AspException
- SimpleMap write method which stores a value with the specified
key. This method always throws AspReadOnlyException since
Request.QueryString is read-only.
getKeys
public java.util.Enumeration getKeys() throws AspException
Count
public int Count()
throws AspException
- ASP-Accessible function to obtain the number of items in this
query string.
|
|||||||||
| Home >> All >> com >> tripi >> [ asp overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
com.tripi.asp.Request.QueryStringObj