Class SuggestedValues
- java.lang.Object
-
- org.identityconnectors.framework.common.objects.SuggestedValues
-
public class SuggestedValues extends Object
List of suggested values, with openness specification. Can be used to list suggested or discovered values for configuration properties.- Since:
- 1.5.2.0
- Author:
- Radovan Semancik
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
ValueListOpenness
getOpenness()
Returns openness of value list.List<Object>
getValues()
Returns list of suggested values.int
hashCode()
String
toString()
-
-
-
Method Detail
-
getValues
public List<Object> getValues()
Returns list of suggested values. Values are ordered in the list in the same way as they should be presented. E.g. a most popular or probable value should be the first.
-
getOpenness
public ValueListOpenness getOpenness()
Returns openness of value list. Closed lists (the default) can accept only specified values. Open lists can accept any value.- See Also:
ValueListOpenness
-
-