I would like to make some request-wide data available in my app engine application.
Examples:
- The URL for which the request was made.
- Authentication information.
I see that ThreadLocal is on the whitelist: http://code.google.com/appengine/docs/java/jrewhitelist.html
Is ThreadLocal a good and safe way to make this information available? Are there alternative / better / more accepted ways?