com.tripi.asp
Class Request.ServerVariablesObj

java.lang.Object
com.tripi.asp.Request.ServerVariablesObj
- All Implemented Interfaces:
- SimpleMap
- Enclosing class:
- Request
- public static class Request.ServerVariablesObj
- extends java.lang.Object
- implements SimpleMap
The ServerVariablesObj implemnets the Request.ServerVariables
object, containing a list of server variables.
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Contents
public AspCollection Contents
- Reference to the collection object
req
javax.servlet.http.HttpServletRequest req
- HTTP Servlet Request object
Request.ServerVariablesObj
Request.ServerVariablesObj(javax.servlet.http.HttpServletRequest req)
- Constructor.
get
public java.lang.Object get(java.lang.Object obj)
throws AspException
- Obtain the value of a server variable.
- Specified by:
get in interface SimpleMap
put
public void put(java.lang.Object key,
java.lang.Object value)
throws AspException
- Stores a value with a specified key. ServerVariables are read-only
so this method always throws an AspReadOnlyException error.
- Specified by:
put in interface SimpleMap
getKeys
public java.util.Enumeration getKeys()
throws AspException
- Obtains the keys of objects stored in this object.
- Specified by:
getKeys in interface SimpleMap