Class PemKeySource
- java.lang.Object
-
- org.sdase.commons.server.auth.key.PemKeySource
-
-
Constructor Summary
Constructors Constructor Description PemKeySource(java.lang.String kid, java.lang.String alg, java.net.URI pemKeyLocation, java.lang.String requiredIssuer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
java.util.List<LoadedPublicKey>
loadKeysFromSource()
Loads the keys provided by this source.java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.sdase.commons.server.auth.key.KeySource
reloadKeysFromSource
-
-
-
-
Method Detail
-
loadKeysFromSource
public java.util.List<LoadedPublicKey> loadKeysFromSource()
Description copied from interface:KeySource
Loads the keys provided by this source.- Specified by:
loadKeysFromSource
in interfaceKeySource
- Returns:
- All keys that this source provides.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-