public class

PropertiesPropertySource

extends MapPropertySource
java.lang.Object
   ↳ org.springframework.core.env.PropertySource<T>
     ↳ org.springframework.core.env.EnumerablePropertySource<T>
       ↳ org.springframework.core.env.MapPropertySource
         ↳ org.springframework.core.env.PropertiesPropertySource
Known Direct Subclasses

Class Overview

PropertySource implementation that extracts properties from a java.util.Properties object.

Note that because a Properties object is technically an <Object, Object> Hashtable, one may contain non-String keys or values. This implementation, however is restricted to accessing only String-based keys and values, in the same fashion as getProperty(String) and setProperty(String, String).

Summary

[Expand]
Inherited Fields
From class org.springframework.core.env.EnumerablePropertySource
From class org.springframework.core.env.PropertySource
Public Constructors
PropertiesPropertySource(String name, Properties source)
[Expand]
Inherited Methods
From class org.springframework.core.env.MapPropertySource
From class org.springframework.core.env.EnumerablePropertySource
From class org.springframework.core.env.PropertySource
From class java.lang.Object

Public Constructors

public PropertiesPropertySource (String name, Properties source)

Also: SpringCore