Package org.apache.shiro.config
Class DefaultInterpolator
- java.lang.Object
-
- org.apache.shiro.config.DefaultInterpolator
-
- All Implemented Interfaces:
Interpolator
public class DefaultInterpolator extends Object implements Interpolator
ThisInterpolatorsimply returns the original value. This is implementation is useful when interpolation is not desired.- Since:
- 1.4
-
-
Constructor Summary
Constructors Constructor Description DefaultInterpolator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringinterpolate(String value)Simply returns the originalvalue.
-
-
-
Method Detail
-
interpolate
public String interpolate(String value)
Simply returns the originalvalue.- Specified by:
interpolatein interfaceInterpolator- Parameters:
value- value to be interpolated.- Returns:
- Simply returns the original
value.
-
-