Bump checkstyle from 8.43 to 8.44
Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 8.43 to 8.44. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-8.43...checkstyle-8.44) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
bddb26779c
commit
a269c9d2f5
2
pom.xml
2
pom.xml
|
@ -44,7 +44,7 @@
|
||||||
<version.json>20210307</version.json>
|
<version.json>20210307</version.json>
|
||||||
|
|
||||||
<!-- build dependencies -->
|
<!-- build dependencies -->
|
||||||
<version.checkstyle>8.43</version.checkstyle>
|
<version.checkstyle>8.44</version.checkstyle>
|
||||||
<version.google-java-format>1.10.0</version.google-java-format>
|
<version.google-java-format>1.10.0</version.google-java-format>
|
||||||
<version.maven.checkstyle>3.1.2</version.maven.checkstyle>
|
<version.maven.checkstyle>3.1.2</version.maven.checkstyle>
|
||||||
<version.maven.jar>3.2.0</version.maven.jar>
|
<version.maven.jar>3.2.0</version.maven.jar>
|
||||||
|
|
|
@ -48,13 +48,13 @@ public class MonitorController {
|
||||||
* grouped by Workbaskets. Each row represents a Workbasket while each column represents a Task
|
* grouped by Workbaskets. Each row represents a Workbasket while each column represents a Task
|
||||||
* State.
|
* State.
|
||||||
*
|
*
|
||||||
|
* @title Get a Task Status Report
|
||||||
* @param domains Filter the report values by domains.
|
* @param domains Filter the report values by domains.
|
||||||
* @param states Filter the report values by Task states.
|
* @param states Filter the report values by Task states.
|
||||||
* @param workbasketIds Filter the report values by Workbasket Ids.
|
* @param workbasketIds Filter the report values by Workbasket Ids.
|
||||||
* @param priorityMinimum Filter the report values by a minimum priority.
|
* @param priorityMinimum Filter the report values by a minimum priority.
|
||||||
* @return the computed TaskStatusReport
|
* @return the computed TaskStatusReport
|
||||||
* @throws NotAuthorizedException if the current user is not authorized to compute the report
|
* @throws NotAuthorizedException if the current user is not authorized to compute the report
|
||||||
* @title Get a Task Status Report
|
|
||||||
*/
|
*/
|
||||||
@GetMapping(path = RestEndpoints.URL_MONITOR_TASKS_STATUS_REPORT)
|
@GetMapping(path = RestEndpoints.URL_MONITOR_TASKS_STATUS_REPORT)
|
||||||
@Transactional(readOnly = true, rollbackFor = Exception.class)
|
@Transactional(readOnly = true, rollbackFor = Exception.class)
|
||||||
|
@ -87,12 +87,12 @@ public class MonitorController {
|
||||||
* date range and grouped by Workbaskets. Each row represents a Workbasket while each column
|
* date range and grouped by Workbaskets. Each row represents a Workbasket while each column
|
||||||
* represents a date range.
|
* represents a date range.
|
||||||
*
|
*
|
||||||
|
* @title Get a Workbasket Report
|
||||||
* @param states Filter the report by task states
|
* @param states Filter the report by task states
|
||||||
* @param taskTimestamp determine which task timestamp should be used for comparison
|
* @param taskTimestamp determine which task timestamp should be used for comparison
|
||||||
* @return the computed report
|
* @return the computed report
|
||||||
* @throws NotAuthorizedException if the current user is not authorized to compute the report
|
* @throws NotAuthorizedException if the current user is not authorized to compute the report
|
||||||
* @throws InvalidArgumentException TODO: this is never thrown ...
|
* @throws InvalidArgumentException TODO: this is never thrown ...
|
||||||
* @title Get a Workbasket Report
|
|
||||||
*/
|
*/
|
||||||
@GetMapping(path = RestEndpoints.URL_MONITOR_TASKS_WORKBASKET_REPORT)
|
@GetMapping(path = RestEndpoints.URL_MONITOR_TASKS_WORKBASKET_REPORT)
|
||||||
@Transactional(readOnly = true, rollbackFor = Exception.class)
|
@Transactional(readOnly = true, rollbackFor = Exception.class)
|
||||||
|
@ -145,8 +145,8 @@ public class MonitorController {
|
||||||
* column represents a date range.
|
* column represents a date range.
|
||||||
*
|
*
|
||||||
* @title Get a Classification Report
|
* @title Get a Classification Report
|
||||||
* @return the computed report
|
|
||||||
* @param taskTimestamp determine which Task Timestamp should be used for comparison
|
* @param taskTimestamp determine which Task Timestamp should be used for comparison
|
||||||
|
* @return the computed report
|
||||||
* @throws NotAuthorizedException if the current user is not authorized to compute the report
|
* @throws NotAuthorizedException if the current user is not authorized to compute the report
|
||||||
* @throws InvalidArgumentException TODO: this is never thrown
|
* @throws InvalidArgumentException TODO: this is never thrown
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue