Fix javadoc issues.

This commit is contained in:
Fabian Märki
2016-07-06 12:13:17 +02:00
parent ed6ea89b7a
commit 405c120a19

View File

@ -211,14 +211,15 @@ public class QueryRestController {
* *
* @param query the {@link ChannelStatusQuery} * @param query the {@link ChannelStatusQuery}
* @param res the {@link HttpServletResponse} instance associated with this request * @param res the {@link HttpServletResponse} instance associated with this request
* @throws IOException thrown if writing to the output stream fails * @return Collection of channel status info
* @throws Throwable in case something goes wrong
*/ */
@RequestMapping( @RequestMapping(
value = PATH_STATUS_CHANNELS, value = PATH_STATUS_CHANNELS,
method = RequestMethod.POST, method = RequestMethod.POST,
consumes = {MediaType.APPLICATION_JSON_VALUE}) consumes = {MediaType.APPLICATION_JSON_VALUE})
public @ResponseBody Collection<ChannelStatus> executeChannelStatusQuery(@RequestBody ChannelStatusQuery query, public @ResponseBody Collection<ChannelStatus> executeChannelStatusQuery(@RequestBody ChannelStatusQuery query,
HttpServletResponse res) throws Exception { HttpServletResponse res) throws Throwable {
// set backends if not defined yet // set backends if not defined yet
channelNameCache.setBackends(query.getChannels()); channelNameCache.setBackends(query.getChannels());
@ -268,7 +269,7 @@ public class QueryRestController {
* *
* @param query the {@link DAQQuery} * @param query the {@link DAQQuery}
* @param res the {@link HttpServletResponse} instance associated with this request * @param res the {@link HttpServletResponse} instance associated with this request
* @throws IOException thrown if writing to the output stream fails * @throws Exception thrown if writing to the output stream fails
*/ */
@RequestMapping( @RequestMapping(
value = PATH_QUERY, value = PATH_QUERY,
@ -299,13 +300,13 @@ public class QueryRestController {
* Catch-all query method for getting data from the backend for both JSON and CSV requests. * Catch-all query method for getting data from the backend for both JSON and CSV requests.
* <p> * <p>
* The {@link DAQQueries} object will contain the concrete subclass based on the combination of * The {@link DAQQueries} object will contain the concrete subclass based on the combination of
* fields defined in the user's query. The {@link AttributeBasedDeserializer} decides which class * fields defined in the user's query. The AttributeBasedDeserializer decides which class
* to deserialize the information into and has been configured (see * to deserialize the information into and has been configured (see
* QueryRestConfig#afterPropertiesSet) accordingly. * QueryRestConfig#afterPropertiesSet) accordingly.
* *
* @param queries the {@link DAQQueryElement}s * @param queries the {@link DAQQueries}
* @param res the {@link HttpServletResponse} instance associated with this request * @param res the {@link HttpServletResponse} instance associated with this request
* @throws IOException thrown if writing to the output stream fails * @throws Exception thrown if writing to the output stream fails
*/ */
@RequestMapping( @RequestMapping(
value = PATH_QUERIES, value = PATH_QUERIES,