Add hint providers for core properties

Closes gh-3322
This commit is contained in:
Stephane Nicoll
2015-06-25 10:24:48 +02:00
parent 2da1d37e97
commit 774474f8b7
3 changed files with 287 additions and 0 deletions

View File

@@ -106,5 +106,88 @@
"description": "Location of the PID file to write (if ApplicationPidFileWriter is used).",
"sourceType": "org.springframework.boot.actuate.system.ApplicationPidFileWriter"
}
],"hints": [
{
"name": "endpoints.cors.allowed-headers",
"values": [
{
"value": "*"
}
],
"providers": [
{
"name": "any"
}
]
},
{
"name": "endpoints.cors.allowed-methods",
"values": [
{
"value": "*"
}
],
"providers": [
{
"name": "any"
}
]
},
{
"name": "endpoints.cors.allowed-origins",
"values": [
{
"value": "*"
}
],
"providers": [
{
"name": "any"
}
]
},
{
"name": "management.health.status.order",
"values": [
{
"value": "UNKNOWN"
},
{
"value": "UP"
},
{
"value": "DOWN"
},
{
"value": "OUT_OF_SERVICE"
}
],
"providers": [
{
"name": "any"
}
]
},
{
"name": "shell.auth",
"values": [
{
"value": "simple",
"description": "Use a simple user/password based authentication."
},
{
"value": "spring",
"description": "Integrate with Spring Security."
},
{
"value": "key",
"description": "Use a Key-based authentication."
},
{
"value": "jaas",
"description": "Use JAAS authentication."
}
]
}
]}