NextApp Echo
App Container 1.1.4

nextapp.echoservlet
Class ApplicationProperties

java.lang.Object
  extended bynextapp.echoservlet.ApplicationProperties
All Implemented Interfaces:
java.io.Serializable

public class ApplicationProperties
extends java.lang.Object
implements java.io.Serializable

Configuration properties for an application.

See Also:
Serialized Form

Field Summary
static java.lang.String CLIENT_ERROR_MESSAGE_RESOURCE
           
static java.lang.String DEBUG_INTERACTIVE_CONTROLLER
           
static java.lang.String DEBUG_OPTIONS_ENABLED
           
static java.lang.String DEBUG_PERFORMANCE_LOGGING
           
static java.lang.String DEBUG_VERBOSE_LOGGING
           
static java.lang.String DEFAULT_PARAMETER_ENCODING
           
static java.lang.String DISABLE_BACK_BUTTON_DISABLE_SUPPORT
           
static java.lang.String DISABLE_ONUNLOAD
           
static java.lang.String DISPLAY_CLIENT_ERROR_FEEDBACK
           
static java.lang.String FIX_PARAMETER_ENCODING
           
static java.lang.String SPLASH_SCREEN_URI
           
static java.lang.String STARTUP_DELAY
           
static java.lang.String STARTUP_NO_SCRIPT_ERROR_TEXT
           
static java.lang.String STARTUP_WINDOW_TEXT
           
static java.lang.String STARTUP_WINDOW_TITLE
           
 
Method Summary
 java.lang.String get(java.lang.String key)
          Returns the value of the specified property as a String.
 boolean getBoolean(java.lang.String key)
          Returns the value of the specified property as a boolean.
 int getInteger(java.lang.String key)
          Returns the value of the specified property as an integer.
 void set(java.lang.String key, java.lang.String value)
          Sets a String property value.
 void setBoolean(java.lang.String key, boolean value)
          Sets a boolean property value.
 void setInteger(java.lang.String key, int value)
          Sets an integer property value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

STARTUP_WINDOW_TITLE

public static final java.lang.String STARTUP_WINDOW_TITLE
See Also:
Constant Field Values

STARTUP_WINDOW_TEXT

public static final java.lang.String STARTUP_WINDOW_TEXT
See Also:
Constant Field Values

STARTUP_NO_SCRIPT_ERROR_TEXT

public static final java.lang.String STARTUP_NO_SCRIPT_ERROR_TEXT
See Also:
Constant Field Values

SPLASH_SCREEN_URI

public static final java.lang.String SPLASH_SCREEN_URI
See Also:
Constant Field Values

STARTUP_DELAY

public static final java.lang.String STARTUP_DELAY
See Also:
Constant Field Values

DEFAULT_PARAMETER_ENCODING

public static final java.lang.String DEFAULT_PARAMETER_ENCODING
See Also:
Constant Field Values

FIX_PARAMETER_ENCODING

public static final java.lang.String FIX_PARAMETER_ENCODING
See Also:
Constant Field Values

DEBUG_OPTIONS_ENABLED

public static final java.lang.String DEBUG_OPTIONS_ENABLED
See Also:
Constant Field Values

DEBUG_VERBOSE_LOGGING

public static final java.lang.String DEBUG_VERBOSE_LOGGING
See Also:
Constant Field Values

DEBUG_INTERACTIVE_CONTROLLER

public static final java.lang.String DEBUG_INTERACTIVE_CONTROLLER
See Also:
Constant Field Values

DEBUG_PERFORMANCE_LOGGING

public static final java.lang.String DEBUG_PERFORMANCE_LOGGING
See Also:
Constant Field Values

DISPLAY_CLIENT_ERROR_FEEDBACK

public static final java.lang.String DISPLAY_CLIENT_ERROR_FEEDBACK
See Also:
Constant Field Values

CLIENT_ERROR_MESSAGE_RESOURCE

public static final java.lang.String CLIENT_ERROR_MESSAGE_RESOURCE
See Also:
Constant Field Values

DISABLE_ONUNLOAD

public static final java.lang.String DISABLE_ONUNLOAD
See Also:
Constant Field Values

DISABLE_BACK_BUTTON_DISABLE_SUPPORT

public static final java.lang.String DISABLE_BACK_BUTTON_DISABLE_SUPPORT
See Also:
Constant Field Values
Method Detail

get

public java.lang.String get(java.lang.String key)
Returns the value of the specified property as a String.

Parameters:
key - The key of the property to be returned.
Returns:
The value of the property as a String.

getBoolean

public boolean getBoolean(java.lang.String key)
Returns the value of the specified property as a boolean.

Parameters:
key - The key of the property to be returned.
Returns:
The value of the property as a boolean.

getInteger

public int getInteger(java.lang.String key)
Returns the value of the specified property as an integer.

Parameters:
key - The key of the property to be returned.
Returns:
The value of the property as an integer.

set

public void set(java.lang.String key,
                java.lang.String value)
Sets a String property value.

Parameters:
key - The key of the property to be set.
value - The new value of the property.

setBoolean

public void setBoolean(java.lang.String key,
                       boolean value)
Sets a boolean property value.

Parameters:
key - The key of the property to be set.
value - The new value of the property.

setInteger

public void setInteger(java.lang.String key,
                       int value)
Sets an integer property value.

Parameters:
key - The key of the property to be set.
value - The new value of the property.

NextApp Echo
App Container 1.1.4