Java Doc for Globals.java in  » Web-Server » Rimfaxe-Web-Server » org » apache » catalina » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Server » Rimfaxe Web Server » org.apache.catalina 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.catalina.Globals

Globals
final public class Globals (Code)
Global constants that are applicable to multiple packages within Catalina.
author:
   Craig R. McClanahan
version:
   $Revision: 1.43 $ $Date: 2001/12/21 21:15:44 $


Field Summary
final public static  StringCERTIFICATES_ATTR
     The request attribute under which we store the array of X509Certificate objects representing the certificate chain presented by our client, if any.
final public static  StringCIPHER_SUITE_ATTR
     The request attribute under which we store the name of the cipher suite being used on an SSL connection (as an object of type java.lang.String).
final public static  StringCLASS_LOADER_ATTR
     The servlet context attribute under which we store the class loader used for loading servlets (as an object of type java.lang.ClassLoader).
final public static  StringCLASS_PATH_ATTR
     The servlet context attribute under which we store the class path for our application class loader (as an object of type String), delimited with the appropriate path delimiter for this platform.
final public static  StringCONTEXT_PATH_ATTR
     The request attribute under which the original context path is stored on an included dispatcher request.
final public static  StringERROR_MESSAGE_ATTR
     The request attribute under which we forward an HTTP status message (as an object of type STring) to an error page.
final public static  StringEXCEPTION_ATTR
     The request attribute under which we forward a Java exception (as an object of type Throwable) to an error page.
final public static  StringEXCEPTION_PAGE_ATTR
     The request attribute under which we forward the request URI (as an object of type String) of the page on which an error occurred.
final public static  StringEXCEPTION_TYPE_ATTR
     The request attribute under which we forward a Java exception type (as an object of type Class) to an error page.
final public static  StringINVOKED_ATTR
     The request attribute under which the Invoker servlet will store the invoking servlet path, if it was used to execute a servlet indirectly instead of through a servlet mapping.
final public static  StringJSP_FILE_ATTR
     The request attribute under which we expose the value of the <jsp-file> value associated with this servlet, if any.
final public static  StringKEY_SIZE_ATTR
     The request attribute under which we store the key size being used for this SSL connection (as an object of type java.lang.Integer).
final public static  StringMBEAN_REGISTRY_ATTR
     The servlet context attribute under which the managed bean Registry will be stored for privileged contexts (if enabled).
final public static  StringMBEAN_SERVER_ATTR
     The servlet context attribute under which the MBeanServer will be stored for privileged contexts (if enabled).
final public static  StringNAMED_DISPATCHER_ATTR
     The request attribute under which we store the servlet name on a named dispatcher request.
final public static  StringPATH_INFO_ATTR
     The request attribute under which the original path info is stored on an included dispatcher request.
final public static  StringQUERY_STRING_ATTR
     The request attribute under which the original query string is stored on an included dispatcher request.
final public static  StringREQUEST_URI_ATTR
     The request attribute under which the original request URI is stored on an included dispatcher request.
final public static  StringRESOURCES_ATTR
     The JNDI directory context which is associated with the context.
final public static  StringSERVLET_NAME_ATTR
     The request attribute under which we forward a servlet name to an error page.
final public static  StringSERVLET_PATH_ATTR
     The request attribute under which the original servlet path is stored on an included dispatcher request.
final public static  StringSESSION_COOKIE_NAME
     The name of the cookie used to pass the session identifier back and forth with the client.
final public static  StringSESSION_PARAMETER_NAME
     The name of the path parameter used to pass the session identifier back and forth with the client.
final public static  StringSTATUS_CODE_ATTR
     The request attribute under which we forward an HTTP status code (as an object of type Integer) to an error page.
final public static  StringWELCOME_FILES_ATTR
     The servlet context attribute under which we record the set of welcome files (as an object of type String[]) for this application.
final public static  StringWORK_DIR_ATTR
     The servlet context attribute under which we store a temporary working directory (as an object of type File) for use by servlets within this web application.



Field Detail
CERTIFICATES_ATTR
final public static String CERTIFICATES_ATTR(Code)
The request attribute under which we store the array of X509Certificate objects representing the certificate chain presented by our client, if any.



CIPHER_SUITE_ATTR
final public static String CIPHER_SUITE_ATTR(Code)
The request attribute under which we store the name of the cipher suite being used on an SSL connection (as an object of type java.lang.String).



CLASS_LOADER_ATTR
final public static String CLASS_LOADER_ATTR(Code)
The servlet context attribute under which we store the class loader used for loading servlets (as an object of type java.lang.ClassLoader).



CLASS_PATH_ATTR
final public static String CLASS_PATH_ATTR(Code)
The servlet context attribute under which we store the class path for our application class loader (as an object of type String), delimited with the appropriate path delimiter for this platform.



CONTEXT_PATH_ATTR
final public static String CONTEXT_PATH_ATTR(Code)
The request attribute under which the original context path is stored on an included dispatcher request.



ERROR_MESSAGE_ATTR
final public static String ERROR_MESSAGE_ATTR(Code)
The request attribute under which we forward an HTTP status message (as an object of type STring) to an error page.



EXCEPTION_ATTR
final public static String EXCEPTION_ATTR(Code)
The request attribute under which we forward a Java exception (as an object of type Throwable) to an error page.



EXCEPTION_PAGE_ATTR
final public static String EXCEPTION_PAGE_ATTR(Code)
The request attribute under which we forward the request URI (as an object of type String) of the page on which an error occurred.



EXCEPTION_TYPE_ATTR
final public static String EXCEPTION_TYPE_ATTR(Code)
The request attribute under which we forward a Java exception type (as an object of type Class) to an error page.



INVOKED_ATTR
final public static String INVOKED_ATTR(Code)
The request attribute under which the Invoker servlet will store the invoking servlet path, if it was used to execute a servlet indirectly instead of through a servlet mapping.



JSP_FILE_ATTR
final public static String JSP_FILE_ATTR(Code)
The request attribute under which we expose the value of the <jsp-file> value associated with this servlet, if any.



KEY_SIZE_ATTR
final public static String KEY_SIZE_ATTR(Code)
The request attribute under which we store the key size being used for this SSL connection (as an object of type java.lang.Integer).



MBEAN_REGISTRY_ATTR
final public static String MBEAN_REGISTRY_ATTR(Code)
The servlet context attribute under which the managed bean Registry will be stored for privileged contexts (if enabled).



MBEAN_SERVER_ATTR
final public static String MBEAN_SERVER_ATTR(Code)
The servlet context attribute under which the MBeanServer will be stored for privileged contexts (if enabled).



NAMED_DISPATCHER_ATTR
final public static String NAMED_DISPATCHER_ATTR(Code)
The request attribute under which we store the servlet name on a named dispatcher request.



PATH_INFO_ATTR
final public static String PATH_INFO_ATTR(Code)
The request attribute under which the original path info is stored on an included dispatcher request.



QUERY_STRING_ATTR
final public static String QUERY_STRING_ATTR(Code)
The request attribute under which the original query string is stored on an included dispatcher request.



REQUEST_URI_ATTR
final public static String REQUEST_URI_ATTR(Code)
The request attribute under which the original request URI is stored on an included dispatcher request.



RESOURCES_ATTR
final public static String RESOURCES_ATTR(Code)
The JNDI directory context which is associated with the context. This context can be used to manipulate static files.



SERVLET_NAME_ATTR
final public static String SERVLET_NAME_ATTR(Code)
The request attribute under which we forward a servlet name to an error page.



SERVLET_PATH_ATTR
final public static String SERVLET_PATH_ATTR(Code)
The request attribute under which the original servlet path is stored on an included dispatcher request.



SESSION_COOKIE_NAME
final public static String SESSION_COOKIE_NAME(Code)
The name of the cookie used to pass the session identifier back and forth with the client.



SESSION_PARAMETER_NAME
final public static String SESSION_PARAMETER_NAME(Code)
The name of the path parameter used to pass the session identifier back and forth with the client.



STATUS_CODE_ATTR
final public static String STATUS_CODE_ATTR(Code)
The request attribute under which we forward an HTTP status code (as an object of type Integer) to an error page.



WELCOME_FILES_ATTR
final public static String WELCOME_FILES_ATTR(Code)
The servlet context attribute under which we record the set of welcome files (as an object of type String[]) for this application.



WORK_DIR_ATTR
final public static String WORK_DIR_ATTR(Code)
The servlet context attribute under which we store a temporary working directory (as an object of type File) for use by servlets within this web application.





Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.