Interface SAML2AttributeTranscoder<EncodedType extends IdPAttributeValue>
-
- Type Parameters:
EncodedType- the type of data that can be handled by the transcoder
- All Superinterfaces:
AttributeTranscoder<Attribute>,Component,InitializableComponent
- All Known Implementing Classes:
AbstractSAML2AttributeTranscoder,SAML2ByteAttributeTranscoder,SAML2DateTimeAttributeTranscoder,SAML2ScopedStringAttributeTranscoder,SAML2StringAttributeTranscoder,SAML2XMLObjectAttributeTranscoder
public interface SAML2AttributeTranscoder<EncodedType extends IdPAttributeValue> extends AttributeTranscoder<Attribute>
Marker interface for transcoders that operate on a SAML 2AttributeorRequestedAttribute.
-
-
Field Summary
Fields Modifier and Type Field Description static StringPROP_ENCODE_TYPEWhether to encode the xsi:type.static StringPROP_FRIENDLY_NAMEA friendly, human readable, name for the attribute.static StringPROP_NAMEThe attribute name.static StringPROP_NAME_FORMATThe format of the attribute name.
-
Method Summary
-
Methods inherited from interface net.shibboleth.idp.attribute.transcoding.AttributeTranscoder
decode, encode, getEncodedName, getEncodedType
-
Methods inherited from interface net.shibboleth.utilities.java.support.component.InitializableComponent
initialize, isInitialized
-
-
-
-
Field Detail
-
PROP_NAME
@Nonnull @NotEmpty static final String PROP_NAME
The attribute name.- See Also:
- Constant Field Values
-
PROP_ENCODE_TYPE
@Nonnull @NotEmpty static final String PROP_ENCODE_TYPE
Whether to encode the xsi:type.- See Also:
- Constant Field Values
-
PROP_FRIENDLY_NAME
@Nonnull @NotEmpty static final String PROP_FRIENDLY_NAME
A friendly, human readable, name for the attribute.- See Also:
- Constant Field Values
-
PROP_NAME_FORMAT
@Nonnull @NotEmpty static final String PROP_NAME_FORMAT
The format of the attribute name.- See Also:
- Constant Field Values
-
-