Interface Names



  • public interface Names
    Constants for the names of the MP-config properties that MP-JWT implementations must support externalization of to ensure portable setup of MP-JWT implementations.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ISSUER
      The expected iss claim value to validate against an MP-JWT.
      static java.lang.String VERIFIER_PUBLIC_KEY
      The embedded key material of the public key for the MP-JWT signer in PKCS8 PEM or JWK(S) format.
      static java.lang.String VERIFIER_PUBLIC_KEY_LOCATION
      The relative path or full URL of the public key.
    • Field Detail

      • VERIFIER_PUBLIC_KEY

        static final java.lang.String VERIFIER_PUBLIC_KEY
        The embedded key material of the public key for the MP-JWT signer in PKCS8 PEM or JWK(S) format. If not found the VERIFIER_PUBLIC_KEY_LOCATION needs to be checked.
        See Also:
        Constant Field Values
      • VERIFIER_PUBLIC_KEY_LOCATION

        static final java.lang.String VERIFIER_PUBLIC_KEY_LOCATION
        The relative path or full URL of the public key. All relative paths will be resolved within the archive using ClassLoader.getResource. If the value is a URL it will be resolved using `new URL(“”).openStream()`
        See Also:
        Constant Field Values
      • ISSUER

        static final java.lang.String ISSUER
        The expected iss claim value to validate against an MP-JWT.
        See Also:
        Constant Field Values