Class ServletConfigPropertySource
- java.lang.Object
- org.springframework.core.env.PropertySource<T>
- org.springframework.core.env.EnumerablePropertySource<ServletConfig>
- org.springframework.web.context.support.ServletConfigPropertySource
public class ServletConfigPropertySource extends EnumerablePropertySource<ServletConfig>
PropertySourcethat reads init parameters from aServletConfigobject.- Since:
- 3.1
- Author:
- Chris Beams
- See Also:
ServletContextPropertySource
Nested Class Summary
Nested classes/interfaces inherited from class org.springframework.core.env.PropertySource
PropertySource.StubPropertySource
Field Summary
Fields inherited from class org.springframework.core.env.PropertySource
logger, name, source
Constructor Summary
Constructors Constructor Description ServletConfigPropertySource(String name, ServletConfig servletConfig)
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetProperty(String name)Return the value associated with the given name, ornullif not found.String[]getPropertyNames()Return the names of all properties contained by the source object (nevernull).Methods inherited from class org.springframework.core.env.EnumerablePropertySource
containsProperty
Constructor Detail
ServletConfigPropertySource
public ServletConfigPropertySource(String name, ServletConfig servletConfig)
Method Detail
getPropertyNames
public String[] getPropertyNames()
Description copied from class:EnumerablePropertySourceReturn the names of all properties contained by the source object (nevernull).- Specified by:
getPropertyNamesin classEnumerablePropertySource<ServletConfig>
getProperty
public String getProperty(String name)
Description copied from class:PropertySourceReturn the value associated with the given name, ornullif not found.- Specified by:
getPropertyin classPropertySource<ServletConfig>- Parameters:
name- the property to find- See Also:
PropertyResolver.getRequiredProperty(String)