Class AttributeContext
- java.lang.Object
-
- org.opensaml.messaging.context.BaseContext
-
- net.shibboleth.idp.attribute.context.AttributeContext
-
- All Implemented Interfaces:
Iterable<BaseContext>
@NotThreadSafe public final class AttributeContext extends BaseContext
ABaseContextthat tracks a set of attributes. Usually the tracked attributes are about a particular user and associated with a particular service request.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opensaml.messaging.context.BaseContext
BaseContext.ContextSetNoRemoveIteratorDecorator
-
-
Field Summary
Fields Modifier and Type Field Description private Map<String,IdPAttribute>attributesThe attributes tracked by this context.private Map<String,IdPAttribute>unfilteredAttributesThe attributes tracked by this context prior to filtering.
-
Constructor Summary
Constructors Constructor Description AttributeContext()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,IdPAttribute>getIdPAttributes()Gets the map of attributes, indexed by attribute ID, tracked by this context.Map<String,IdPAttribute>getUnfilteredIdPAttributes()Gets the map of unfiltered attributes, indexed by attribute ID, tracked by this context.voidsetIdPAttributes(Collection<IdPAttribute> newAttributes)Sets the attributes tracked by this context.voidsetUnfilteredIdPAttributes(Collection<IdPAttribute> newAttributes)Sets the unfiltered attributes tracked by this context.-
Methods inherited from class org.opensaml.messaging.context.BaseContext
addSubcontext, addSubcontext, clearSubcontexts, containsSubcontext, createSubcontext, getParent, getSubcontext, getSubcontext, getSubcontext, getSubcontext, iterator, removeSubcontext, removeSubcontext, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Field Detail
-
attributes
@Nonnull private Map<String,IdPAttribute> attributes
The attributes tracked by this context.
-
unfilteredAttributes
@Nullable private Map<String,IdPAttribute> unfilteredAttributes
The attributes tracked by this context prior to filtering.
-
-
Method Detail
-
getIdPAttributes
@Nonnull @NonnullElements @Unmodifiable @NotLive public Map<String,IdPAttribute> getIdPAttributes()
Gets the map of attributes, indexed by attribute ID, tracked by this context.- Returns:
- the collection of attributes indexed by attribute ID
-
setIdPAttributes
public void setIdPAttributes(@Nullable @NonnullElements Collection<IdPAttribute> newAttributes)
Sets the attributes tracked by this context.- Parameters:
newAttributes- the attributes
-
getUnfilteredIdPAttributes
@Nonnull @NonnullElements @Unmodifiable @NotLive public Map<String,IdPAttribute> getUnfilteredIdPAttributes()
Gets the map of unfiltered attributes, indexed by attribute ID, tracked by this context.- Returns:
- the collection of attributes indexed by attribute ID
-
setUnfilteredIdPAttributes
public void setUnfilteredIdPAttributes(@Nullable @NonnullElements Collection<IdPAttribute> newAttributes)
Sets the unfiltered attributes tracked by this context.- Parameters:
newAttributes- the attributes
-
-