public class ServletConfiguration extends BaseWebConfiguration
ServletConfig
. This configuration
is read only, adding or removing a property will throw an
UnsupportedOperationException.Modifier and Type | Field and Description |
---|---|
protected javax.servlet.ServletConfig |
config
Stores a reference to the wrapped
ServletConfig . |
END_TOKEN, EVENT_ADD_PROPERTY, EVENT_CLEAR, EVENT_CLEAR_PROPERTY, EVENT_READ_PROPERTY, EVENT_SET_PROPERTY, START_TOKEN
Constructor and Description |
---|
ServletConfiguration(javax.servlet.Servlet servlet)
Create a ServletConfiguration using the initialization parameter of
the specified servlet.
|
ServletConfiguration(javax.servlet.ServletConfig config)
Create a ServletConfiguration using the servlet initialization parameters.
|
Modifier and Type | Method and Description |
---|---|
java.util.Iterator |
getKeys()
Get the list of the keys contained in the configuration.
|
java.lang.Object |
getProperty(java.lang.String key)
Gets a property from the configuration.
|
addPropertyDirect, clearProperty, containsKey, handleDelimiters, isEmpty
addErrorLogListener, addProperty, clear, clearPropertyDirect, createInterpolator, getBigDecimal, getBigDecimal, getBigInteger, getBigInteger, getBoolean, getBoolean, getBoolean, getByte, getByte, getByte, getDefaultListDelimiter, getDelimiter, getDouble, getDouble, getDouble, getFloat, getFloat, getFloat, getInt, getInt, getInteger, getInterpolator, getKeys, getList, getList, getListDelimiter, getLogger, getLong, getLong, getLong, getProperties, getProperties, getShort, getShort, getShort, getString, getString, getStringArray, getSubstitutor, interpolate, interpolate, interpolateHelper, isDelimiterParsingDisabled, isThrowExceptionOnMissing, resolveContainerStore, setDefaultListDelimiter, setDelimiter, setDelimiterParsingDisabled, setListDelimiter, setLogger, setProperty, setThrowExceptionOnMissing, subset
addConfigurationListener, addErrorListener, clearConfigurationListeners, clearErrorListeners, clone, createErrorEvent, createEvent, fireError, fireEvent, getConfigurationListeners, getErrorListeners, isDetailEvents, removeConfigurationListener, removeErrorListener, setDetailEvents
protected javax.servlet.ServletConfig config
ServletConfig
.public ServletConfiguration(javax.servlet.Servlet servlet)
servlet
- the servletpublic ServletConfiguration(javax.servlet.ServletConfig config)
config
- the servlet configurationpublic java.lang.Object getProperty(java.lang.String key)
Configuration
Configuration
interface the other get methods (that
return specific data types) will internally make use of this method. On
this level variable substitution is not yet performed. The returned
object is an internal representation of the property value for the passed
in key. It is owned by the Configuration
object. So a caller
should not modify this object. It cannot be guaranteed that this object
will stay constant over time (i.e. further update operations on the
configuration may change its internal state).key
- property to retrievepublic java.util.Iterator getKeys()
AbstractConfiguration
remove()
method is specific to
a concrete implementation. It may remove the corresponding
property from the configuration, but this is not guaranteed. In any case
it is no replacement for calling
Configuration.clearProperty(String)
for this property. So it is
highly recommended to avoid using the iterator's remove()
method.getKeys
in interface Configuration
getKeys
in class AbstractConfiguration