Class SAMLArtifactMetadataIndex.ArtifactSourceLocationMetadataIndexKey
- java.lang.Object
-
- org.opensaml.saml.metadata.resolver.index.impl.SAMLArtifactMetadataIndex.ArtifactSourceLocationMetadataIndexKey
-
- All Implemented Interfaces:
MetadataIndexKey
- Enclosing class:
- SAMLArtifactMetadataIndex
protected static class SAMLArtifactMetadataIndex.ArtifactSourceLocationMetadataIndexKey extends Object implements MetadataIndexKey
An implementation ofMetadataIndexKeyrepresenting a SAML artifact source location value.
-
-
Field Summary
Fields Modifier and Type Field Description private StringcanonicalizedLocationThe location.private booleanisCanonicalizedLowerCaseFlag indicating whether canonicalized location is the simple lower case fallback strategy.private StringlocationThe location.private org.slf4j.LoggerlogLogger.
-
Constructor Summary
Constructors Constructor Description ArtifactSourceLocationMetadataIndexKey(String sourceLocation)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)StringgetCanonicalizedLocation()Get the canonicalized representation of the location, primarily for use inhashCode()andequals(Object).StringgetLocation()Gets the location.inthashCode()StringtoString()
-
-
-
Field Detail
-
log
private org.slf4j.Logger log
Logger.
-
location
@Nonnull private final String location
The location.
-
canonicalizedLocation
@Nonnull private String canonicalizedLocation
The location.
-
isCanonicalizedLowerCase
private boolean isCanonicalizedLowerCase
Flag indicating whether canonicalized location is the simple lower case fallback strategy.
-
-
Method Detail
-
getLocation
@Nonnull public String getLocation()
Gets the location.- Returns:
- the location
-
getCanonicalizedLocation
@Nonnull public String getCanonicalizedLocation()
Get the canonicalized representation of the location, primarily for use inhashCode()andequals(Object).- Returns:
- the canonicalized source location
-
-