Interface SubjectSearchResult
- 
 public interface SubjectSearchResultA single search result from a subject search.
- 
- 
Field SummaryFields Modifier and Type Field Description static RWIterable<SubjectSearchResult>INDETERMINABLE_RESULTstatic Set<SubjectType>ROLESstatic Set<SubjectType>USERSstatic Set<SubjectType>USERS_AND_ROLES
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEmail()Get the email address.StringgetName()Get the name.SubjectTypegetType()Get the type of subject.StringgetUID()Get the unique identifier in the external security system.
 
- 
- 
- 
Field Detail- 
USERSstatic final Set<SubjectType> USERS 
 - 
ROLESstatic final Set<SubjectType> ROLES 
 - 
USERS_AND_ROLESstatic final Set<SubjectType> USERS_AND_ROLES 
 - 
INDETERMINABLE_RESULTstatic final RWIterable<SubjectSearchResult> INDETERMINABLE_RESULT 
 
- 
 - 
Method Detail- 
getTypeSubjectType getType() Get the type of subject.- Returns:
- the type of user.
 
 - 
getNameString getName() Get the name.- Returns:
- the name.
 
 - 
getUIDString getUID() Get the unique identifier in the external security system.- Returns:
- the unique identifier.
 
 - 
getEmailString getEmail() Get the email address.- Returns:
- the email address.
 
 
- 
 
-