Interface SubjectSearchResult
-
public interface SubjectSearchResult
A single search result from a subject search.
-
-
Field Summary
Fields Modifier and Type Field Description static RWIterable<SubjectSearchResult>
INDETERMINABLE_RESULT
static Set<SubjectType>
ROLES
static Set<SubjectType>
USERS
static Set<SubjectType>
USERS_AND_ROLES
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEmail()
Get the email address.String
getName()
Get the name.SubjectType
getType()
Get the type of subject.String
getUID()
Get the unique identifier in the external security system.
-
-
-
Field Detail
-
USERS
static final Set<SubjectType> USERS
-
ROLES
static final Set<SubjectType> ROLES
-
USERS_AND_ROLES
static final Set<SubjectType> USERS_AND_ROLES
-
INDETERMINABLE_RESULT
static final RWIterable<SubjectSearchResult> INDETERMINABLE_RESULT
-
-
Method Detail
-
getType
SubjectType getType()
Get the type of subject.- Returns:
- the type of user.
-
getName
String getName()
Get the name.- Returns:
- the name.
-
getUID
String getUID()
Get the unique identifier in the external security system.- Returns:
- the unique identifier.
-
getEmail
String getEmail()
Get the email address.- Returns:
- the email address.
-
-