Bug 8067 - change EL implicit objects to match final list
Summary: change EL implicit objects to match final list
Status: RESOLVED FIXED
Alias: None
Product: Taglibs
Classification: Unclassified
Component: Standard Taglib (show other bugs)
Version: unspecified
Hardware: All All
: P3 normal (vote)
Target Milestone: ---
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-04-14 14:54 UTC by Nathan Abramson
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nathan Abramson 2002-04-14 14:54:48 UTC
The final list of implicit objects is:

  * param - Map from param name to String value
  * paramValues - Map from param name to String[] of values
  * header - Map from header name to String value
  * headerValues - Map from header name to String[] of values
  * initParam - Map from init param name to String value
  * pageScope - Map of page-scoped variables
  * requestScope - Map of request-scoped variables
  * sessionScope - Map of session-scoped variables
  * applicationScope - Map of application-scoped variables
  * cookie - Map from cookie name to first matching Cookie in 
request.getCookies()
Comment 1 Nathan Abramson 2002-04-14 23:06:03 UTC
The list of implicit objects has been changed to:

  * param - Map from param name to String value
  * paramValues - Map from param name to String[] of values
  * header - Map from header name to String value
  * headerValues - Map from header name to String[] of values
  * initParam - Map from init param name to String value
  * pageScope - Map of page-scoped variables
  * requestScope - Map of request-scoped variables
  * sessionScope - Map of session-scoped variables
  * applicationScope - Map of application-scoped variables
  * cookie - Map from cookie name to first matching Cookie in 
request.getCookies()