EntitlementSubject
@Deprecated public interface Subject extends Cloneable
Subject
defines a collection
of users (or subject) to whom the specified Policy
is applied.
A complete implementation of this interface can have complex
boolean operations to determine if the given user identified
by the SSOToken
belongs to this collection.
The interfaces are separated into administrative
interfaces and evaluation interfaces. The administrative interfaces
will be used by web interface/command line interface component to create a
Subject
object and the evaluation interfaces will be used by the
PolicyEvaluator
.
Modifier and Type | Method and Description |
---|---|
Object |
clone()
Deprecated.
Creates and returns a copy of this object.
|
String |
getDisplayNameForValue(String value,
Locale locale)
Deprecated.
Returns the display name for the value for the given locale.
|
ValidValues |
getValidValues(SSOToken token)
Deprecated.
Returns a list of possible values for the
Subject
. |
ValidValues |
getValidValues(SSOToken token,
String pattern)
Deprecated.
Returns a list of possible values for the
Subject
that satisfy the given pattern . |
Set |
getValues()
Deprecated.
Returns the values that was set using the
method
setValues . |
Syntax |
getValueSyntax(SSOToken token)
Deprecated.
Returns the syntax of the values the
Subject implementation can have. |
void |
initialize(Map configParams)
Deprecated.
Initialize (or configure) the
Subject
object. |
boolean |
isMember(SSOToken token)
Deprecated.
Determines if the user belongs to this instance
of the
Subject object. |
void |
setValues(Set names)
Deprecated.
Sets the names for the instance of the
Subject
object. |
Syntax getValueSyntax(SSOToken token) throws SSOException, PolicyException
Subject
implementation can have.token
- the SSOToken
that will be used
to determine the syntaxSet
of valid names for the user collection.SSOException
- if SSOToken
is not validPolicyException
- if unable to get the list of valid names.Syntax
ValidValues getValidValues(SSOToken token) throws SSOException, PolicyException
Subject
. The implementation must use the SSOToken
token provided to determine the possible
values. For example, in a Role implementation
this method will return all the roles defined
in the organization.token
- the SSOToken
that will be used
to determine the possible valuesValidValues
objectSSOException
- if SSOToken
is not validPolicyException
- if unable to get the list of valid
names.ValidValues getValidValues(SSOToken token, String pattern) throws SSOException, PolicyException
Subject
that satisfy the given pattern
.
The implementation must use the SSOToken
token provided to determine the possible
values. For example, in a Role implementation with the
search filter *admin
this method will return all
the roles defined in the organization that end with admin
token
- the SSOToken
that will be used
to determine the possible valuespattern
- search pattern that will be used to narrow
the list of valid names.ValidValues
objectSSOException
- if SSOToken
is not validPolicyException
- if unable to get the list of valid
names.String getDisplayNameForValue(String value, Locale locale) throws NameNotFoundException
getValidValues
this method must be called
by web and command line interface to get the corresponding display name.
The locale
variable could be used by the
plugin to customize the display name for the given locale.
The locale
variable
could be null
, in which case the plugin must
use the default locale (most probably en_US
).
This method returns only the display name and should not
be used for the method setValues
.
Alternatively, if the plugin does not have to localize
the value, it can just return the value
as is.value
- one of the valid value for the pluginlocale
- locale for which the display name must be customizedNameNotFoundException
- if the given value
is not one of the valid values for the pluginSet getValues()
setValues
.Set
of values that have been set for the
user collection.void initialize(Map configParams) throws PolicyException
Subject
object. Usually it will be initialized with the environment
parameters set by the system administrator via admin console.
For example in a Role implementation, the configuration
parameters could specify the directory server name, port, etc.configParams
- configuration parameters as a Map
.
The values in the map is java.util.Set
,
which contains one or more configuration parameters.PolicyException
- if an error occurred during
initialization of Subject
instancevoid setValues(Set names) throws InvalidNameException
Subject
object. The names are obtained from the Policy
object,
usually configured when a policy is created. For example
in a Role implementation, this would be name of the role.names
- names selected for the instance of
the user collection object.InvalidNameException
- if the given names are not validboolean isMember(SSOToken token) throws SSOException, PolicyException
Subject
object.
For example, a Role implementation
would return true
if the user belongs
the specified role; false
otherwise.token
- single-sign-on token of the usertrue
if the user is member of the
given subject; false
otherwise.SSOException
- if SSO token is not validPolicyException
- if an error occurred while
checking if the user is a member of this subjectObject clone()
Copyright © 2010-2018, ForgeRock All Rights Reserved.