@Retention(RUNTIME) @Target({FIELD,METHOD,ANNOTATION_TYPE}) public @interface PemKeyStore
Configures the PemSslStoreBundle key store to use with an SSL supported @ServiceConnection.
从以下版本开始:
3.5.0
作者:
Phillip Webb
  • 元素详细资料

    • value

      @AliasFor("certificate") String value
      Alias for certificate().
      返回:
      the store certificate
      默认值:
      ""
    • certificate

      @AliasFor("value") String certificate
      The location or content of the certificate or certificate chain in PEM format.
      返回:
      the store certificate location or content
      默认值:
      ""
    • privateKey

      String privateKey
      The location or content of the private key in PEM format.
      返回:
      the store private key location or content
      默认值:
      ""
    • privateKeyPassword

      String privateKeyPassword
      The password used to decrypt an encrypted private key.
      返回:
      the store private key password
      默认值:
      ""
    • type

      String type
      The type of the store to create, e.g. JKS.
      返回:
      the store type
      默认值:
      ""