Package org.apache.shiro.config.ogdl
Interface Interpolator
- All Known Implementing Classes:
CommonsInterpolator,DefaultInterpolator
public interface Interpolator
Basic String interpolation interface. Typically implementations will use the Maven/Ant like notation: ${key}, but
This is up to the implementation.
- Since:
- 1.4
-
Method Summary
Modifier and TypeMethodDescriptioninterpolate(String value) Interpolatesvalueand returns the result.
-
Method Details
-
interpolate
Interpolatesvalueand returns the result.- Parameters:
value- the source text- Returns:
- the String result of the interpolation, or
value, if there was not change.
-