Fork me on GitHub

Checkstyle Results

The following document contains the results of Checkstyle 8.19 with build-config/lutece_checks.xml ruleset. 

rss feed

Summary

Files
 Info
 Warnings
 Errors
22 0 0 140

Files

File
 I
 W
 E
fr/paris/lutece/plugins/workflow/modules/appointmentants/business/TaskAntsAppointmentConfig.java 0 0 6
fr/paris/lutece/plugins/workflow/modules/appointmentants/business/TaskAntsAppointmentConfigDAO.java 0 0 1
fr/paris/lutece/plugins/workflow/modules/appointmentants/business/history/ITaskAntsAppointmentHistoryDAO.java 0 0 2
fr/paris/lutece/plugins/workflow/modules/appointmentants/business/history/TaskAntsAppointmentHistory.java 0 0 3
fr/paris/lutece/plugins/workflow/modules/appointmentants/business/history/TaskAntsAppointmentHistoryDAO.java 0 0 5
fr/paris/lutece/plugins/workflow/modules/appointmentants/pojo/AntsAddAppointmentResponsePOJO.java 0 0 4
fr/paris/lutece/plugins/workflow/modules/appointmentants/pojo/AntsDeleteAppointmentResponsePOJO.java 0 0 8
fr/paris/lutece/plugins/workflow/modules/appointmentants/pojo/AntsStatusResponsePOJO.java 0 0 10
fr/paris/lutece/plugins/workflow/modules/appointmentants/service/ITaskAntsAppointmentService.java 0 0 9
fr/paris/lutece/plugins/workflow/modules/appointmentants/service/TaskAddAntsAppointment.java 0 0 6
fr/paris/lutece/plugins/workflow/modules/appointmentants/service/TaskAntsAppointmentService.java 0 0 49
fr/paris/lutece/plugins/workflow/modules/appointmentants/service/TaskDeleteAntsAppointment.java 0 0 2
fr/paris/lutece/plugins/workflow/modules/appointmentants/service/WorkflowAppointmentAntsPlugin.java 0 0 1
fr/paris/lutece/plugins/workflow/modules/appointmentants/service/history/ITaskAntsAppointmentHistoryService.java 0 0 2
fr/paris/lutece/plugins/workflow/modules/appointmentants/service/history/TaskAntsAppointmentHistoryService.java 0 0 3
fr/paris/lutece/plugins/workflow/modules/appointmentants/service/rest/TaskAntsAppointmentRest.java 0 0 7
fr/paris/lutece/plugins/workflow/modules/appointmentants/service/rest/TaskAntsAppointmentRestConstants.java 0 0 6
fr/paris/lutece/plugins/workflow/modules/appointmentants/web/AbstractTaskAntsAppointmentComponent.java 0 0 6
fr/paris/lutece/plugins/workflow/modules/appointmentants/web/TaskAddAntsAppointmentComponent.java 0 0 5
fr/paris/lutece/plugins/workflow/modules/appointmentants/web/TaskDeleteAntsAppointmentComponent.java 0 0 5

Rules

Category Rule Violations Severity
blocks LeftCurly
  • option: "nl"
20
 Error
coding DeclarationOrder 26
 Error
HiddenField 4
 Error
design FinalClass 4
 Error
header Header
  • fileExtensions: "java"
  • headerFile: "/opt/datas/jenkins/home/jobs/admin-github-build/workspace/target/checkstyle-header.txt"
20
 Error
imports UnusedImports 5
 Error
javadoc JavadocMethod 29
 Error
JavadocType 3
 Error
modifier RedundantModifier 3
 Error
naming MemberName
  • format: "^_[a-z](_?[a-zA-Z0-9])*$"
4
 Error
whitespace ParenPad
  • option: "space"
22
 Error

Details

fr/paris/lutece/plugins/workflow/modules/appointmentants/business/TaskAntsAppointmentConfig.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
blocks LeftCurly '{' at column 59 should be on a new line. 44
 Error
javadoc JavadocMethod Missing a Javadoc comment. 57
 Error
javadoc JavadocMethod Missing a Javadoc comment. 62
 Error
javadoc JavadocMethod Missing a Javadoc comment. 67
 Error
javadoc JavadocMethod Missing a Javadoc comment. 72

fr/paris/lutece/plugins/workflow/modules/appointmentants/business/TaskAntsAppointmentConfigDAO.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2

fr/paris/lutece/plugins/workflow/modules/appointmentants/business/history/ITaskAntsAppointmentHistoryDAO.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
javadoc JavadocType Missing a Javadoc comment. 38

fr/paris/lutece/plugins/workflow/modules/appointmentants/business/history/TaskAntsAppointmentHistory.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
blocks LeftCurly '{' at column 45 should be on a new line. 159
 Error
blocks LeftCurly '{' at column 73 should be on a new line. 169

fr/paris/lutece/plugins/workflow/modules/appointmentants/business/history/TaskAntsAppointmentHistoryDAO.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
whitespace ParenPad '(' is not followed by whitespace. 108
 Error
whitespace ParenPad ')' is not preceded with whitespace. 108
 Error
whitespace ParenPad '(' is not followed by whitespace. 124
 Error
whitespace ParenPad ')' is not preceded with whitespace. 124

fr/paris/lutece/plugins/workflow/modules/appointmentants/pojo/AntsAddAppointmentResponsePOJO.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
blocks LeftCurly '{' at column 45 should be on a new line. 45
 Error
naming MemberName Name 'success' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 51
 Error
coding HiddenField 'success' hides a field. 64

fr/paris/lutece/plugins/workflow/modules/appointmentants/pojo/AntsDeleteAppointmentResponsePOJO.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
blocks LeftCurly '{' at column 48 should be on a new line. 45
 Error
naming MemberName Name 'rowcount' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 51
 Error
blocks LeftCurly '{' at column 27 should be on a new line. 59
 Error
whitespace ParenPad '(' is not followed by whitespace. 67
 Error
coding HiddenField 'rowcount' hides a field. 67
 Error
whitespace ParenPad ')' is not preceded with whitespace. 67
 Error
blocks LeftCurly '{' at column 40 should be on a new line. 67

fr/paris/lutece/plugins/workflow/modules/appointmentants/pojo/AntsStatusResponsePOJO.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
blocks LeftCurly '{' at column 37 should be on a new line. 45
 Error
naming MemberName Name 'status' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 51
 Error
naming MemberName Name 'appointments' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 57
 Error
javadoc JavadocMethod Missing a Javadoc comment. 59
 Error
javadoc JavadocMethod Missing a Javadoc comment. 64
 Error
javadoc JavadocMethod Missing a Javadoc comment. 69
 Error
coding HiddenField 'status' hides a field. 69
 Error
javadoc JavadocMethod Missing a Javadoc comment. 74
 Error
coding HiddenField 'appointments' hides a field. 74

fr/paris/lutece/plugins/workflow/modules/appointmentants/service/ITaskAntsAppointmentService.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
javadoc JavadocType Missing a Javadoc comment. 40
 Error
blocks LeftCurly '{' at column 46 should be on a new line. 40
 Error
javadoc JavadocMethod Missing a Javadoc comment. 42
 Error
modifier RedundantModifier Redundant 'public' modifier. 42
 Error
javadoc JavadocMethod Missing a Javadoc comment. 44
 Error
modifier RedundantModifier Redundant 'public' modifier. 44
 Error
javadoc JavadocMethod Missing a Javadoc comment. 46
 Error
modifier RedundantModifier Redundant 'public' modifier. 46

fr/paris/lutece/plugins/workflow/modules/appointmentants/service/TaskAddAntsAppointment.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
imports UnusedImports Unused import - java.util.ArrayList. 36
 Error
imports UnusedImports Unused import - java.util.List. 37
 Error
imports UnusedImports Unused import - fr.paris.lutece.plugins.appointment.service.AppointmentResponseService. 45
 Error
imports UnusedImports Unused import - fr.paris.lutece.plugins.genericattributes.business.Response. 46
 Error
coding DeclarationOrder Static variable definition in wrong order. 96

fr/paris/lutece/plugins/workflow/modules/appointmentants/service/TaskAntsAppointmentService.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
imports UnusedImports Unused import - fr.paris.lutece.plugins.appointment.web.AppointmentApp. 64
 Error
design FinalClass Class TaskAntsAppointmentService should be declared as final. 84
 Error
blocks LeftCurly '{' at column 80 should be on a new line. 84
 Error
coding DeclarationOrder Static variable definition in wrong order. 95
 Error
coding DeclarationOrder Static variable definition in wrong order. 97
 Error
coding DeclarationOrder Static variable definition in wrong order. 103
 Error
coding DeclarationOrder Static variable definition in wrong order. 105
 Error
coding DeclarationOrder Static variable definition in wrong order. 107
 Error
coding DeclarationOrder Static variable definition in wrong order. 109
 Error
coding DeclarationOrder Static variable definition in wrong order. 111
 Error
coding DeclarationOrder Static variable definition in wrong order. 117
 Error
coding DeclarationOrder Static variable definition in wrong order. 123
 Error
coding DeclarationOrder Static variable definition in wrong order. 129
 Error
coding DeclarationOrder Static variable definition in wrong order. 132
 Error
coding DeclarationOrder Static variable definition in wrong order. 138
 Error
coding DeclarationOrder Static variable definition in wrong order. 139
 Error
coding DeclarationOrder Static variable definition in wrong order. 140
 Error
javadoc JavadocMethod Missing a Javadoc comment. 142
 Error
blocks LeftCurly '{' at column 89 should be on a new line. 188
 Error
blocks LeftCurly '{' at column 61 should be on a new line. 191
 Error
whitespace ParenPad ')' is not preceded with whitespace. 195
 Error
whitespace ParenPad ')' is not preceded with whitespace. 196
 Error
blocks LeftCurly '{' at column 9 should be on a new line. 202
 Error
blocks LeftCurly '{' at column 89 should be on a new line. 271
 Error
blocks LeftCurly '{' at column 61 should be on a new line. 273
 Error
whitespace ParenPad ')' is not preceded with whitespace. 277
 Error
whitespace ParenPad ')' is not preceded with whitespace. 278
 Error
blocks LeftCurly '{' at column 9 should be on a new line. 283
 Error
whitespace ParenPad '(' is not followed by whitespace. 353
 Error
whitespace ParenPad '(' is not followed by whitespace. 354
 Error
whitespace ParenPad '(' is not followed by whitespace. 355
 Error
whitespace ParenPad '(' is not followed by whitespace. 356
 Error
javadoc JavadocMethod Expected @throws tag for 'HttpAccessException'. 371
 Error
javadoc JavadocMethod Expected @throws tag for 'IOException'. 371
 Error
whitespace ParenPad '(' is not followed by whitespace. 403
 Error
whitespace ParenPad '(' is not followed by whitespace. 404
 Error
whitespace ParenPad '(' is not followed by whitespace. 405
 Error
javadoc JavadocMethod Expected @throws tag for 'HttpAccessException'. 420
 Error
javadoc JavadocMethod Expected @throws tag for 'IOException'. 420
 Error
javadoc JavadocMethod Unused @param tag for 'isDeletingAntsAppointment'. 434
 Error
javadoc JavadocMethod Expected @param tag for 'isDeletingAppointment'. 440
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 471
 Error
javadoc JavadocMethod Expected @throws tag for 'HttpAccessException'. 537
 Error
whitespace ParenPad ')' is not preceded with whitespace. 555
 Error
javadoc JavadocMethod Expected @throws tag for 'IOException'. 707
 Error
whitespace ParenPad ')' is not preceded with whitespace. 743
 Error
javadoc JavadocMethod Expected @throws tag for 'IOException'. 760
 Error
javadoc JavadocMethod Expected @throws tag for 'IOException'. 782

fr/paris/lutece/plugins/workflow/modules/appointmentants/service/TaskDeleteAntsAppointment.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
coding DeclarationOrder Static variable definition in wrong order. 92

fr/paris/lutece/plugins/workflow/modules/appointmentants/service/WorkflowAppointmentAntsPlugin.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2

fr/paris/lutece/plugins/workflow/modules/appointmentants/service/history/ITaskAntsAppointmentHistoryService.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
javadoc JavadocType Missing a Javadoc comment. 39

fr/paris/lutece/plugins/workflow/modules/appointmentants/service/history/TaskAntsAppointmentHistoryService.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
design FinalClass Class TaskAntsAppointmentHistoryService should be declared as final. 50
 Error
javadoc JavadocMethod Missing a Javadoc comment. 61

fr/paris/lutece/plugins/workflow/modules/appointmentants/service/rest/TaskAntsAppointmentRest.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
design FinalClass Class TaskAntsAppointmentRest should be declared as final. 48
 Error
blocks LeftCurly '{' at column 38 should be on a new line. 48
 Error
javadoc JavadocMethod Missing a Javadoc comment. 50
 Error
javadoc JavadocMethod Expected @throws tag for 'HttpAccessException'. 67
 Error
javadoc JavadocMethod Expected @throws tag for 'HttpAccessException'. 90
 Error
javadoc JavadocMethod Expected @throws tag for 'HttpAccessException'. 113

fr/paris/lutece/plugins/workflow/modules/appointmentants/service/rest/TaskAntsAppointmentRestConstants.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
design FinalClass Class TaskAntsAppointmentRestConstants should be declared as final. 43
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 43
 Error
whitespace ParenPad '(' is not followed by whitespace. 68
 Error
whitespace ParenPad ')' is not preceded with whitespace. 68
 Error
javadoc JavadocMethod Missing a Javadoc comment. 70

fr/paris/lutece/plugins/workflow/modules/appointmentants/web/AbstractTaskAntsAppointmentComponent.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
blocks LeftCurly '{' at column 88 should be on a new line. 65
 Error
coding DeclarationOrder Variable access definition in wrong order. 76
 Error
coding DeclarationOrder Variable access definition in wrong order. 77
 Error
javadoc JavadocMethod Expected @param tag for 'request'. 101
 Error
whitespace ParenPad '(' is not followed by whitespace. 290

fr/paris/lutece/plugins/workflow/modules/appointmentants/web/TaskAddAntsAppointmentComponent.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
coding DeclarationOrder Static variable definition in wrong order. 77
 Error
coding DeclarationOrder Static variable definition in wrong order. 82
 Error
coding DeclarationOrder Static variable definition in wrong order. 83
 Error
coding DeclarationOrder Static variable definition in wrong order. 84

fr/paris/lutece/plugins/workflow/modules/appointmentants/web/TaskDeleteAntsAppointmentComponent.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of ' * Copyright (c) 2002-2020, City of Paris'. 2
 Error
coding DeclarationOrder Static variable definition in wrong order. 77
 Error
coding DeclarationOrder Static variable definition in wrong order. 82
 Error
coding DeclarationOrder Static variable definition in wrong order. 83
 Error
coding DeclarationOrder Static variable definition in wrong order. 84