Browse Source

Add missing metadata for renamed SSL properties

Closes gh-13239
pull/13302/head
Stephane Nicoll 8 years ago
parent
commit
bd9299dbf9
  1. 144
      spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

144
spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

@ -1316,6 +1316,150 @@ @@ -1316,6 +1316,150 @@
"level": "error"
}
},
{
"name": "spring.kafka.admin.ssl.keystore-location",
"type": "org.springframework.core.io.Resource",
"description": "Location of the key store file.",
"deprecation": {
"replacement": "spring.kafka.admin.ssl.key-store-location",
"level": "error"
}
},
{
"name": "spring.kafka.admin.ssl.keystore-password",
"type": "java.lang.String",
"description": "Store password for the key store file.",
"deprecation": {
"replacement": "spring.kafka.admin.ssl.key-store-password",
"level": "error"
}
},
{
"name": "spring.kafka.admin.ssl.truststore-location",
"type": "org.springframework.core.io.Resource",
"description": "Location of the trust store file.",
"deprecation": {
"replacement": "spring.kafka.admin.ssl.trust-store-location",
"level": "error"
}
},
{
"name": "spring.kafka.admin.ssl.truststore-password",
"type": "java.lang.String",
"description": "Store password for the trust store file.",
"deprecation": {
"replacement": "spring.kafka.admin.ssl.trust-store-password",
"level": "error"
}
},
{
"name": "spring.kafka.consumer.ssl.keystore-location",
"type": "org.springframework.core.io.Resource",
"description": "Location of the key store file.",
"deprecation": {
"replacement": "spring.kafka.consumer.ssl.key-store-location",
"level": "error"
}
},
{
"name": "spring.kafka.consumer.ssl.keystore-password",
"type": "java.lang.String",
"description": "Store password for the key store file.",
"deprecation": {
"replacement": "spring.kafka.consumer.ssl.key-store-password",
"level": "error"
}
},
{
"name": "spring.kafka.consumer.ssl.truststore-location",
"type": "org.springframework.core.io.Resource",
"description": "Location of the trust store file.",
"deprecation": {
"replacement": "spring.kafka.consumer.ssl.trust-store-location",
"level": "error"
}
},
{
"name": "spring.kafka.consumer.ssl.truststore-password",
"type": "java.lang.String",
"description": "Store password for the trust store file.",
"deprecation": {
"replacement": "spring.kafka.consumer.ssl.trust-store-password",
"level": "error"
}
},
{
"name": "spring.kafka.producer.ssl.keystore-location",
"type": "org.springframework.core.io.Resource",
"description": "Location of the key store file.",
"deprecation": {
"replacement": "spring.kafka.producer.ssl.key-store-location",
"level": "error"
}
},
{
"name": "spring.kafka.producer.ssl.keystore-password",
"type": "java.lang.String",
"description": "Store password for the key store file.",
"deprecation": {
"replacement": "spring.kafka.producer.ssl.key-store-password",
"level": "error"
}
},
{
"name": "spring.kafka.producer.ssl.truststore-location",
"type": "org.springframework.core.io.Resource",
"description": "Location of the trust store file.",
"deprecation": {
"replacement": "spring.kafka.producer.ssl.trust-store-location",
"level": "error"
}
},
{
"name": "spring.kafka.producer.ssl.truststore-password",
"type": "java.lang.String",
"description": "Store password for the trust store file.",
"deprecation": {
"replacement": "spring.kafka.producer.ssl.trust-store-password",
"level": "error"
}
},
{
"name": "spring.kafka.ssl.keystore-location",
"type": "org.springframework.core.io.Resource",
"description": "Location of the key store file.",
"deprecation": {
"replacement": "spring.kafka.ssl.key-store-location",
"level": "error"
}
},
{
"name": "spring.kafka.ssl.keystore-password",
"type": "java.lang.String",
"description": "Store password for the key store file.",
"deprecation": {
"replacement": "spring.kafka.ssl.key-store-password",
"level": "error"
}
},
{
"name": "spring.kafka.ssl.truststore-location",
"type": "org.springframework.core.io.Resource",
"description": "Location of the trust store file.",
"deprecation": {
"replacement": "spring.kafka.ssl.trust-store-location",
"level": "error"
}
},
{
"name": "spring.kafka.ssl.truststore-password",
"type": "java.lang.String",
"description": "Store password for the trust store file.",
"deprecation": {
"replacement": "spring.kafka.ssl.trust-store-password",
"level": "error"
}
},
{
"name": "spring.messages.cache-seconds",
"type": "java.lang.Integer",

Loading…
Cancel
Save