Java javax.servlet.jsp.jstl.core Config fields, constructors, methods, implement or subclass

Example usage for Java javax.servlet.jsp.jstl.core Config fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.servlet.jsp.jstl.core Config.

The text is from its open source code.

Field

StringFMT_LOCALE
Name of configuration setting for application- (as opposed to browser-) based preferred locale
StringFMT_FALLBACK_LOCALE
Name of configuration setting for fallback locale
StringFMT_LOCALIZATION_CONTEXT
Name of configuration setting for i18n localization context
StringFMT_TIME_ZONE
Name of localization setting for time zone

Method

Objectget(ServletRequest request, String name)
Looks up a configuration variable in the "request" scope.
Objectget(HttpSession session, String name)
Looks up a configuration variable in the "session" scope.
Objectget(ServletContext context, String name)
Looks up a configuration variable in the "application" scope.
voidset(ServletRequest request, String name, Object value)
Sets the value of a configuration variable in the "request" scope.
voidset(HttpSession session, String name, Object value)
Sets the value of a configuration variable in the "session" scope.
voidset(ServletContext context, String name, Object value)
Sets the value of a configuration variable in the "application" scope.
voidset(PageContext pc, String name, Object value, int scope)
Sets the value of a configuration variable in the given scope.