Package net.shibboleth.idp.saml.nameid
Interface NameIdentifierDecoder
-
- All Known Implementing Classes:
CryptoTransientNameIdentifierDecoder
,TransformingNameIdentifierDecoder
,TransientNameIdentifierDecoder
public interface NameIdentifierDecoder
Interface for converting aNameIdentifier
back into a principal name.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
decode(SubjectCanonicalizationContext c14nContext, NameIdentifier nameID)
Decode the providedNameIdentifier
.
-
-
-
Method Detail
-
decode
@Nullable String decode(@Nonnull SubjectCanonicalizationContext c14nContext, @Nonnull NameIdentifier nameID) throws NameDecoderException
Decode the providedNameIdentifier
.If the object is incompatible with the decoder in some way, a null is returned.
- Parameters:
c14nContext
- the active c14n contextnameID
- the object to decode- Returns:
- the principal decoded from the value, or null
- Throws:
NameDecoderException
- if an error occurred during translation
-
-