Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.tripi.asp
Class Request.QueryStringObj  view Request.QueryStringObj download Request.QueryStringObj.java

java.lang.Object
  extended bycom.tripi.asp.Request.QueryStringObj
All Implemented Interfaces:
SimpleMap, SimpleReference
Enclosing class:
Request

public static class Request.QueryStringObj
extends java.lang.Object
implements SimpleMap, SimpleReference

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:
getValue in interface SimpleReference

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:
setValue in interface SimpleReference

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.

Specified by:
get in interface SimpleMap

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.

Specified by:
put in interface SimpleMap

getKeys

public java.util.Enumeration getKeys()
                              throws AspException
Obtains the names of parameters stored in this object.

Specified by:
getKeys in interface SimpleMap

Count

public int Count()
          throws AspException
ASP-Accessible function to obtain the number of items in this query string.