Class StaticJwksSignatureConfigurationProperties

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String PREFIX  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getPath()
      A path either starting with `classpath:` or `file:`.
      void setPath​(java.lang.String path)
      A path either starting with `classpath:` or `file:`.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • StaticJwksSignatureConfigurationProperties

        public StaticJwksSignatureConfigurationProperties()
    • Method Detail

      • getPath

        @NonNull
        public java.lang.String getPath()
        Description copied from interface: StaticJwksSignatureConfiguration
        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.
        Specified by:
        getPath in interface StaticJwksSignatureConfiguration
        Returns:
        A path either starting with `classpath:` or `file:`.
      • setPath

        public void setPath​(@NonNull
                            java.lang.String path)
        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.
        Parameters:
        path - A path either starting with `classpath:` or `file:`. You can serve a JSON JWKS from anywhere on disk or the classpath.