Package com.evolveum.midpoint.util
Interface DisplayableValue<T>
-
- All Known Implementing Classes:
DisplayableValueImpl,ModelAuthorizationAction,RoleSelectionSpecEntry
public interface DisplayableValue<T>- Author:
- Radovan Semancik
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Returns longer description that can be used as a help text, tooltip or for similar purpose.StringgetLabel()Returns short user-friendly label.TgetValue()Retuns actual value.
-
-
-
Method Detail
-
getValue
T getValue()
Retuns actual value. This may not be user-friendly.
-
getLabel
String getLabel()
Returns short user-friendly label. Catalog key may be returned instead of actual text.
-
getDescription
String getDescription()
Returns longer description that can be used as a help text, tooltip or for similar purpose. Catalog key may be returned instead of actual text.
-
-