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<com.redwood.scheduler.api.model.enumeration.SubjectType>
ROLES
static Set<com.redwood.scheduler.api.model.enumeration.SubjectType>
USERS
static Set<com.redwood.scheduler.api.model.enumeration.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.com.redwood.scheduler.api.model.enumeration.SubjectType
getType()
Get the type of subject.String
getUID()
Get the unique identifier in the external security system.
-
-
-
Field Detail
-
USERS
static final Set<com.redwood.scheduler.api.model.enumeration.SubjectType> USERS
-
ROLES
static final Set<com.redwood.scheduler.api.model.enumeration.SubjectType> ROLES
-
USERS_AND_ROLES
static final Set<com.redwood.scheduler.api.model.enumeration.SubjectType> USERS_AND_ROLES
-
INDETERMINABLE_RESULT
static final RWIterable<SubjectSearchResult> INDETERMINABLE_RESULT
-
-
Method Detail
-
getType
com.redwood.scheduler.api.model.enumeration.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.
-
-