Package net.shibboleth.idp.saml.nameid
Class NameIDCanonicalizationFlowDescriptor
- java.lang.Object
-
- net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
-
- net.shibboleth.utilities.java.support.component.AbstractIdentifiedInitializableComponent
-
- net.shibboleth.utilities.java.support.component.AbstractIdentifiableInitializableComponent
-
- net.shibboleth.idp.authn.SubjectCanonicalizationFlowDescriptor
-
- net.shibboleth.idp.saml.nameid.NameIDCanonicalizationFlowDescriptor
-
- All Implemented Interfaces:
Predicate<ProfileRequestContext>
,FlowDescriptor
,Component
,DestructableComponent
,IdentifiableComponent
,IdentifiedComponent
,InitializableComponent
public class NameIDCanonicalizationFlowDescriptor extends SubjectCanonicalizationFlowDescriptor
A class used to describe flow descriptors forNameIDPrincipal
andNameIdentifierPrincipal
c14n. This adds the concept of formats to the base class.
-
-
Constructor Summary
Constructors Constructor Description NameIDCanonicalizationFlowDescriptor()
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<String>
getFormats()
Return the set of acceptable formats.void
setFormats(Collection<String> theFormats)
Sets the acceptable formats.-
Methods inherited from class net.shibboleth.idp.authn.SubjectCanonicalizationFlowDescriptor
equals, hashCode, setActivationCondition, test, toString
-
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractIdentifiableInitializableComponent
setId
-
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractIdentifiedInitializableComponent
doInitialize, getId
-
Methods inherited from class net.shibboleth.utilities.java.support.component.AbstractInitializableComponent
destroy, doDestroy, initialize, isDestroyed, isInitialized
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.shibboleth.utilities.java.support.component.DestructableComponent
destroy, isDestroyed
-
Methods inherited from interface net.shibboleth.utilities.java.support.component.IdentifiableComponent
setId
-
Methods inherited from interface net.shibboleth.utilities.java.support.component.IdentifiedComponent
getId
-
Methods inherited from interface net.shibboleth.utilities.java.support.component.InitializableComponent
initialize, isInitialized
-
-
-
-
Field Detail
-
formats
@Nonnull @NonnullElements private Set<String> formats
Store Set of acceptable formats.
-
-
Method Detail
-
getFormats
@Nonnull @NonnullElements @Unmodifiable @NotLive public Collection<String> getFormats()
Return the set of acceptable formats.- Returns:
- Returns the formats. Never empty after initialization.
-
setFormats
public void setFormats(@Nonnull @NonnullElements Collection<String> theFormats)
Sets the acceptable formats.- Parameters:
theFormats
- The formats to set.
-
-