rest/rest-api/src/main/java/org/apache/brooklyn/rest/api/SensorApi.java [101:113]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            @ApiParam(value = "Application ID or name", required = true)
            @PathParam("application") final String application,
            @ApiParam(value = "Entity ID or name", required = true)
            @PathParam("entity") final String entityToken,
            @ApiParam(value = "Sensor name", required = true)
            @PathParam("sensor") String sensorName,

            @ApiParam(value = "Whether to format/annotate values with hints for for display", required = false)
            @QueryParam("useDisplayHints") @DefaultValue("true") final Boolean useDisplayHints,
            @ApiParam(value = "Return raw sensor data instead of display values (deprecated, see useDisplayHints)", required = false)
            @Deprecated @QueryParam("raw") @DefaultValue("false") final Boolean raw,
            @ApiParam(value = "Whether to suppress secrets", required = false)
            @QueryParam("suppressSecrets") final Boolean suppressSecrets);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



rest/rest-api/src/main/java/org/apache/brooklyn/rest/api/SensorApi.java [128:140]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            @ApiParam(value = "Application ID or name", required = true)
            @PathParam("application") final String application,
            @ApiParam(value = "Entity ID or name", required = true)
            @PathParam("entity") final String entityToken,
            @ApiParam(value = "Sensor name", required = true)
            @PathParam("sensor") String sensorName,

            @ApiParam(value = "Whether to format/annotate values with hints for for display", required = false)
            @QueryParam("useDisplayHints") @DefaultValue("true") final Boolean useDisplayHints,
            @ApiParam(value = "Return raw sensor data instead of display values (deprecated, see useDisplayHints)", required = false)
            @Deprecated @QueryParam("raw") @DefaultValue("false") final Boolean raw,
            @ApiParam(value = "Whether to suppress secrets", required = false)
            @QueryParam("suppressSecrets") final Boolean suppressSecrets);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



