static boolean |
UserAttribute.contains(List<UserAttribute> list,
String name) |
Returns whether the list of user attributes contains a user attribute whose name matches the
specified name.
|
List<User> |
InternalUserDirectory.findUsers(List<UserAttribute> userAttributes) |
|
List<User> |
ISecurityService.findUsers(UUID userDirectoryId,
List<UserAttribute> userAttributes) |
Retrieve the users matching the user attribute criteria.
|
List<User> |
LDAPUserDirectory.findUsers(List<UserAttribute> userAttributes) |
|
List<User> |
SecurityService.findUsers(UUID userDirectoryId,
List<UserAttribute> userAttributes) |
|
static byte[] |
UserAttribute.getBinaryValue(List<UserAttribute> list,
String name) |
Returns the binary value for the user attribute with the specified name in the specified list.
|
static BigDecimal |
UserAttribute.getDecimalValue(List<UserAttribute> list,
String name) |
Returns the BigDecimal value for the user attribute with the specified name in the
specified list.
|
static double |
UserAttribute.getDoubleValue(List<UserAttribute> list,
String name) |
Returns the double value for the user attribute with the specified name in the specified
list.
|
static int |
UserAttribute.getIntegerValue(List<UserAttribute> list,
String name) |
Returns the int value for the user attribute with the specified name in the specified
list.
|
static long |
UserAttribute.getLongValue(List<UserAttribute> list,
String name) |
Returns the long value for the user attribute with the specified name in the specified
list.
|
static String |
UserAttribute.getStringValue(List<UserAttribute> list,
String name) |
Returns the String value for the user attribute with the specified name in the specified
list.
|
static void |
UserAttribute.setBinaryValue(List<UserAttribute> list,
String name,
byte[] value) |
Set the binary value for the user attribute with the specified name in the specified list.
|
static void |
UserAttribute.setBinaryValue(List<UserAttribute> list,
String name,
africa.absa.inception.core.util.BinaryBuffer value) |
Set the binary value for the user attribute with the specified name in the specified list.
|
static void |
UserAttribute.setDecimalValue(List<UserAttribute> list,
String name,
BigDecimal value) |
Set the BigDecimal value for the user attribute with the specified name in the specified
list.
|
static void |
UserAttribute.setDoubleValue(List<UserAttribute> list,
String name,
double value) |
Set the double value for the user attribute with the specified name in the specified
list.
|
static void |
UserAttribute.setIntegerValue(List<UserAttribute> list,
String name,
int value) |
Set the int value for the user attribute with the specified name in the specified list.
|
static void |
UserAttribute.setLongValue(List<UserAttribute> list,
String name,
long value) |
Set the long value for the user attribute with the specified name in the specified list.
|
static void |
UserAttribute.setStringValue(List<UserAttribute> list,
String name,
String value) |
Set the String value for the user attribute with the specified name in the specified
list.
|