Interface StaticJwksSignatureConfiguration

All Known Implementing Classes:
StaticJwksSignatureConfigurationProperties

public interface StaticJwksSignatureConfiguration
Configuration JSON Web Key Sets defined as static resources.
  • Method Summary

    Modifier and Type
    Method
    Description
    @NonNull String
    A path either starting with `classpath:` or `file:`.
  • Method Details

    • getPath

      @NonNull @NonNull String getPath()
      A path either starting with `classpath:` or `file:`. You can serve a JSON JWKS from anywhere on disk or the classpath. For example to serve static resources from `src/main/resources/security/jwks.json`, you would use `classpath:security/jwks.json` as the path.
      Returns:
      A path either starting with `classpath:` or `file:`.