• Stephane Nicoll's avatar
    Add support for property hint · bc932173
    Stephane Nicoll authored
    Create a new section in the meta-data called "hints" where users can
    provide hints about a given property. The most basic use case for now
    is to provide a list of values that a property can have. Each value may
    have a description.
    
    This sample JSON provides a basic example for a property called `foo.mode`
    that exposes 3 values: "auto", "basic" and "advanced".
    
    ```
     "hints": [
        {
          "id": "foo.mode",
          "values": [
            {
              "value": "auto",
              "description": "Some smart description."
            },
            {
              "name": "basic"
            },
            {
              "name": "advanced"
            }
          ]
        }
    ]
    ```
    
    This information can be read by tools (such as IDE) and offer an
    auto-completion with the list of values.
    
    Closes gh-2054
    bc932173
Name
Last commit
Last update
docs Loading commit data...
eclipse Loading commit data...
spring-boot Loading commit data...
spring-boot-actuator Loading commit data...
spring-boot-autoconfigure Loading commit data...
spring-boot-cli Loading commit data...
spring-boot-dependencies Loading commit data...
spring-boot-deployment-tests Loading commit data...
spring-boot-devtools Loading commit data...
spring-boot-docs Loading commit data...
spring-boot-full-build Loading commit data...
spring-boot-integration-tests Loading commit data...
spring-boot-parent Loading commit data...
spring-boot-samples Loading commit data...
spring-boot-starters Loading commit data...
spring-boot-tools Loading commit data...
.gitignore Loading commit data...
.settings-template.xml Loading commit data...
.travis.yml Loading commit data...
CONTRIBUTING.adoc Loading commit data...
LICENSE.txt Loading commit data...
README.adoc Loading commit data...
pom.xml Loading commit data...