Package org.simpleframework.xml.filter
Class PlatformFilter
- java.lang.Object
-
- org.simpleframework.xml.filter.StackFilter
-
- org.simpleframework.xml.filter.PlatformFilter
-
- All Implemented Interfaces:
Filter
public class PlatformFilter extends StackFilter
ThePlatformFilter
object makes use of all filter types this resolves user specified properties first, followed by system properties, and finally environment variables. This filter will be the default filter used by most applications as it can make use of all values within the application platform.- Author:
- Niall Gallagher
-
-
Constructor Summary
Constructors Constructor Description PlatformFilter()
Constructor for thePlatformFilter
object.PlatformFilter(java.util.Map map)
Constructor for thePlatformFilter
object.
-
Method Summary
-
Methods inherited from class org.simpleframework.xml.filter.StackFilter
push, replace
-
-
-
-
Constructor Detail
-
PlatformFilter
public PlatformFilter()
Constructor for thePlatformFilter
object. This adds a filter which can be used to resolve environment variables followed by one that can be used to resolve system properties and finally one to resolve user specified values.
-
PlatformFilter
public PlatformFilter(java.util.Map map)
Constructor for thePlatformFilter
object. This adds a filter which can be used to resolve environment variables followed by one that can be used to resolve system properties and finally one to resolve user specified values.- Parameters:
map
- this is a map contain the user mappings
-
-