Interface ISecuredValue<T>
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
SecuredValue
public interface ISecuredValue<T> extends java.io.SerializableDefines a secured value
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetSecuredValue()Get the secured value, e.g.TgetValue()Get the valuebooleanhasSecuredValue()Check if it has a secured value
-
-
-
Method Detail
-
getValue
T getValue()
Get the value- Returns:
- the value
-
hasSecuredValue
boolean hasSecuredValue()
Check if it has a secured value- Returns:
- true if it has a secured value
-
getSecuredValue
java.lang.String getSecuredValue()
Get the secured value, e.g. to write into a log or a console- Returns:
- the secured value
-
-