Attribute Release Caching
By default, resolved attributes are cached to the length of the SSO session. If there are any attribute value changes since the commencement of SSO session, the changes are not reflected and returned back to the service upon release time.
Default
The default relationship between a CAS Principal
and the underlying attribute
repository source, such that principal attributes are kept as they are without
any additional processes to evaluate and update them. This need not be configured explicitly.
Caching
The relationship between a CAS Principal
and the underlying attribute
repository source, that describes how and at what length the CAS Principal
attributes should
be cached. Upon attribute release time, this component is consulted to ensure that appropriate
attribute values are released to the scoped service, per the cache expiration policy.
If the expiration policy has passed, the underlying attribute repository source will be consulted
to figure out the available set of attributes.
This component also has the ability to resolve conflicts between existing principal attributes and
those that are retrieved from repository source via a mergingStrategy
property.
This is useful if you want to preserve the collection of attributes that are already
available to the principal that were retrieved from a different place during the authentication event, etc.
Note
that the policy is only consulted at release time, upon a service ticket validation event. If there are
any custom webflows and such that wish to rely on the resolved Principal
AND also wish to
receive an updated set of attributes, those components must consult the underlying source directory
without relying on the Principal
.
Sample configuration follows:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"@class" : "org.apereo.cas.services.RegexRegisteredService",
"serviceId" : "sample",
"name" : "sample",
"id" : 100,
"attributeReleasePolicy" : {
"@class" : "org.apereo.cas.services.ReturnAllowedAttributeReleasePolicy",
"principalAttributesRepository" : {
"@class" : "org.apereo.cas.authentication.principal.cache.CachingPrincipalAttributesRepository",
"duration" : {
"@class" : "javax.cache.expiry.Duration",
"timeUnit" : [ "java.util.concurrent.TimeUnit", "HOURS" ],
"expiration" : 2
},
"mergingStrategy" : "NONE"
}
}
}
Merging Strategies
By default, no merging strategy takes place, which means the principal attributes are always ignored and attributes from the source are always returned. But any of the following merging strategies may be a suitable option:
Merge
Attributes with the same name are merged into multi-valued lists.
For example:
- Principal has attributes
{email=eric.dalquist@example.com, phone=123-456-7890}
- Source has attributes
{phone=[111-222-3333, 000-999-8888], office=3233}
- The resulting merged would have attributes:
{email=eric.dalquist@example.com, phone=[123-456-7890, 111-222-3333, 000-999-8888], office=3233}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"@class" : "org.apereo.cas.services.RegexRegisteredService",
"serviceId" : "sample",
"name" : "sample",
"id" : 100,
"attributeReleasePolicy" : {
"@class" : "org.apereo.cas.services.ReturnAllowedAttributeReleasePolicy",
"principalAttributesRepository" : {
"@class" : "org.apereo.cas.authentication.principal.cache.CachingPrincipalAttributesRepository",
"duration" : {
"@class" : "javax.cache.expiry.Duration",
"timeUnit" : [ "java.util.concurrent.TimeUnit", "HOURS" ],
"expiration" : 2
},
"mergingStrategy" : "MULTIVALUED"
}
}
}
Add
Attributes are merged such that attributes from the source that don’t already exist for the principal are produced.
For example:
- Principal has attributes
{email=eric.dalquist@example.com, phone=123-456-7890}
- Source has attributes
{phone=[111-222-3333, 000-999-8888], office=3233}
- The resulting merged would have attributes:
{email=eric.dalquist@example.com, phone=123-456-7890, office=3233}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"@class" : "org.apereo.cas.services.RegexRegisteredService",
"serviceId" : "sample",
"name" : "sample",
"id" : 100,
"attributeReleasePolicy" : {
"@class" : "org.apereo.cas.services.ReturnAllowedAttributeReleasePolicy",
"principalAttributesRepository" : {
"@class" : "org.apereo.cas.authentication.principal.cache.CachingPrincipalAttributesRepository",
"duration" : {
"@class" : "javax.cache.expiry.Duration",
"timeUnit" : [ "java.util.concurrent.TimeUnit", "HOURS" ],
"expiration" : 2
},
"mergingStrategy" : "ADD"
}
}
}
Replace
Attributes are merged such that attributes from the source always replace principal attributes.
For example:
- Principal has attributes
{email=eric.dalquist@example.com, phone=123-456-7890}
- Source has attributes
{phone=[111-222-3333, 000-999-8888], office=3233}
- The resulting merged would have attributes:
{email=eric.dalquist@example.com, phone=[111-222-3333, 000-999-8888], office=3233}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"@class" : "org.apereo.cas.services.RegexRegisteredService",
"serviceId" : "sample",
"name" : "sample",
"id" : 100,
"attributeReleasePolicy" : {
"@class" : "org.apereo.cas.services.ReturnAllowedAttributeReleasePolicy",
"principalAttributesRepository" : {
"@class" : "org.apereo.cas.authentication.principal.cache.CachingPrincipalAttributesRepository",
"duration" : {
"@class" : "javax.cache.expiry.Duration",
"timeUnit" : [ "java.util.concurrent.TimeUnit", "HOURS" ],
"expiration" : 2
},
"mergingStrategy" : "REPLACE"
}
}
}