org.apache.struts.config
Class MessageResourcesConfig

java.lang.Object
  extended by org.apache.struts.config.BaseConfig
      extended by org.apache.struts.config.MessageResourcesConfig
All Implemented Interfaces:
java.io.Serializable

public class MessageResourcesConfig
extends BaseConfig

A JavaBean representing the configuration information of a <message-resources> element in a Struts configuration file.

Since:
Struts 1.1
Version:
$Rev: 471754 $ $Date: 2005-08-29 23:57:50 -0400 (Mon, 29 Aug 2005) $
See Also:
Serialized Form

Field Summary
protected  java.lang.String factory
          Fully qualified Java class name of the MessageResourcesFactory class we should use.
protected  java.lang.String key
          The servlet context attributes key under which this MessageResources instance is stored.
protected  boolean nullValue
          Should we return null for unknown message keys?
protected  java.lang.String parameter
          Parameter that is passed to the createResources() method of our MessageResourcesFactory implementation.
 
Fields inherited from class org.apache.struts.config.BaseConfig
configured
 
Constructor Summary
MessageResourcesConfig()
           
 
Method Summary
 java.lang.String getFactory()
           
 java.lang.String getKey()
           
 boolean getNull()
           
 java.lang.String getParameter()
           
 boolean isEscape()
          Indicates whether 'escape processing' should be performed on the error message string.
 void setEscape(boolean escape)
          Set whether 'escape processing' should be performed on the error message string.
 void setFactory(java.lang.String factory)
           
 void setKey(java.lang.String key)
           
 void setNull(boolean nullValue)
           
 void setParameter(java.lang.String parameter)
           
 java.lang.String toString()
          Return a String representation of this object.
 
Methods inherited from class org.apache.struts.config.BaseConfig
copyProperties, freeze, getProperties, getProperty, inheritProperties, setProperties, setProperty, throwIfConfigured
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

factory

protected java.lang.String factory
Fully qualified Java class name of the MessageResourcesFactory class we should use.


key

protected java.lang.String key
The servlet context attributes key under which this MessageResources instance is stored.


nullValue

protected boolean nullValue
Should we return null for unknown message keys?


parameter

protected java.lang.String parameter
Parameter that is passed to the createResources() method of our MessageResourcesFactory implementation.

Constructor Detail

MessageResourcesConfig

public MessageResourcesConfig()
Method Detail

getFactory

public java.lang.String getFactory()

setFactory

public void setFactory(java.lang.String factory)

getKey

public java.lang.String getKey()

setKey

public void setKey(java.lang.String key)

getNull

public boolean getNull()

setNull

public void setNull(boolean nullValue)

isEscape

public boolean isEscape()
Indicates whether 'escape processing' should be performed on the error message string.

Since:
Struts 1.2.8

setEscape

public void setEscape(boolean escape)
Set whether 'escape processing' should be performed on the error message string.

Since:
Struts 1.2.8

getParameter

public java.lang.String getParameter()

setParameter

public void setParameter(java.lang.String parameter)

toString

public java.lang.String toString()
Return a String representation of this object.

Overrides:
toString in class java.lang.Object


Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.