Fork me on GitHub

Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
36 0 0 236

Files

File  I  W  E
fr/paris/lutece/plugins/transparency/business/Appointment.java 0 0 16
fr/paris/lutece/plugins/transparency/business/AppointmentDAO.java 0 0 28
fr/paris/lutece/plugins/transparency/business/AppointmentFilter.java 0 0 24
fr/paris/lutece/plugins/transparency/business/AppointmentHome.java 0 0 4
fr/paris/lutece/plugins/transparency/business/ElectedOfficial.java 0 0 4
fr/paris/lutece/plugins/transparency/business/ElectedOfficialAppointment.java 0 0 2
fr/paris/lutece/plugins/transparency/business/ElectedOfficialAppointmentDAO.java 0 0 1
fr/paris/lutece/plugins/transparency/business/ElectedOfficialAppointmentHome.java 0 0 2
fr/paris/lutece/plugins/transparency/business/ElectedOfficialDAO.java 0 0 1
fr/paris/lutece/plugins/transparency/business/ElectedOfficialHome.java 0 0 4
fr/paris/lutece/plugins/transparency/business/IAppointmentDAO.java 0 0 3
fr/paris/lutece/plugins/transparency/business/IElectedOfficialAppointmentDAO.java 0 0 2
fr/paris/lutece/plugins/transparency/business/IElectedOfficialDAO.java 0 0 4
fr/paris/lutece/plugins/transparency/business/ILobbyAppointmentDAO.java 0 0 3
fr/paris/lutece/plugins/transparency/business/ILobbyDAO.java 0 0 4
fr/paris/lutece/plugins/transparency/business/Lobby.java 0 0 4
fr/paris/lutece/plugins/transparency/business/LobbyAppointment.java 0 0 3
fr/paris/lutece/plugins/transparency/business/LobbyAppointmentDAO.java 0 0 1
fr/paris/lutece/plugins/transparency/business/LobbyAppointmentHome.java 0 0 2
fr/paris/lutece/plugins/transparency/business/LobbyDAO.java 0 0 3
fr/paris/lutece/plugins/transparency/business/LobbyHome.java 0 0 4
fr/paris/lutece/plugins/transparency/rs/Constants.java 0 0 2
fr/paris/lutece/plugins/transparency/rs/LobbyRest.java 0 0 5
fr/paris/lutece/plugins/transparency/rs/SwaggerRest.java 0 0 17
fr/paris/lutece/plugins/transparency/service/ExportAppointmentService.java 0 0 30
fr/paris/lutece/plugins/transparency/service/LobbyService.java 0 0 6
fr/paris/lutece/plugins/transparency/service/daemon/LobbySynchroDaemon.java 0 0 1
fr/paris/lutece/plugins/transparency/web/AbstractManageAppointementsJspBean.java 0 0 1
fr/paris/lutece/plugins/transparency/web/AbstractManageLobbiesJspBean.java 0 0 1
fr/paris/lutece/plugins/transparency/web/AppointmentJspBean.java 0 0 9
fr/paris/lutece/plugins/transparency/web/AppointmentPublicXPage.java 0 0 7
fr/paris/lutece/plugins/transparency/web/AppointmentXPage.java 0 0 27
fr/paris/lutece/plugins/transparency/web/LobbyJspBean.java 0 0 10
fr/paris/lutece/plugins/transparency/web/LobbyXPage.java 0 0 1

Rules

Category Rule Violations Severity
blocks LeftCurly
  • option: "nl"
4  Error
NeedBraces 22  Error
RightCurly
  • option: "alone"
1  Error
coding DeclarationOrder 7  Error
HiddenField 10  Error
design HideUtilityClassConstructor 3  Error
VisibilityModifier 1  Error
header Header
  • fileExtensions: "java"
  • headerFile: "/opt/data/jenkins/home/jobs/admin-github-build/workspace/target/checkstyle-header.txt"
34  Error
imports AvoidStarImport 6  Error
UnusedImports 11  Error
javadoc JavadocMethod 65  Error
modifier ModifierOrder 3  Error
naming LocalVariableName
  • format: "^[a-z][a-zA-Z0-9]*$"
2  Error
MemberName
  • format: "^_[a-z](_?[a-zA-Z0-9])*$"
2  Error
ParameterName
  • format: "^[a-z][a-zA-Z0-9]*$"
8  Error
StaticVariableName
  • format: "^_[a-z](_?[a-zA-Z0-9])*$"
3  Error
regexp RegexpSinglelineJava
  • format: "System\.exit"
1  Error
RegexpSinglelineJava
  • format: "System\.out\.println"
1  Error
whitespace ParenPad
  • option: "space"
50  Error
WhitespaceAround
  • tokens: "ASSIGN,EQUAL"
3  Error

Details

fr/paris/lutece/plugins/transparency/business/Appointment.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.validation.constraints.*. 36
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.hibernate.validator.constraints.*. 37
 Error naming MemberName Name 'electedOfficialList' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 72
 Error naming MemberName Name 'lobbyList' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 73
 Error coding DeclarationOrder Static variable definition in wrong order. 79
 Error coding DeclarationOrder Variable access definition in wrong order. 79
 Error naming StaticVariableName Name 'RESOURCE_TYPE' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 79
 Error design VisibilityModifier Variable 'RESOURCE_TYPE' must be private and have accessor methods. 79
 Error coding HiddenField 'electedOfficialList' hides a field. 264
 Error javadoc JavadocMethod Expected @param tag for 'electedOfficialList'. 264
 Error coding HiddenField 'lobbyList' hides a field. 284
 Error javadoc JavadocMethod Expected @param tag for 'lobbyList'. 284
 Error coding HiddenField '_strContacts' hides a field. 304
 Error javadoc JavadocMethod Expected @param tag for '_strContacts'. 304
 Error naming ParameterName Name '_strContacts' must match pattern '^[a-z][a-zA-Z0-9]*$'. 304

fr/paris/lutece/plugins/transparency/business/AppointmentDAO.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error regexp RegexpSinglelineJava Line matches the illegal pattern 'WHERE 1'. 59
 Error whitespace ParenPad '(' is not followed by whitespace. 203
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 203
 Error blocks NeedBraces 'if' construct must use '{}'s. 205
 Error blocks NeedBraces 'if' construct must use '{}'s. 207
 Error blocks NeedBraces 'if' construct must use '{}'s. 209
 Error blocks NeedBraces 'if' construct must use '{}'s. 211
 Error blocks NeedBraces 'if' construct must use '{}'s. 213
 Error blocks NeedBraces 'if' construct must use '{}'s. 215
 Error whitespace ParenPad '(' is not followed by whitespace. 262
 Error whitespace WhitespaceAround '==' is not followed by whitespace. 262
 Error blocks NeedBraces 'if' construct must use '{}'s. 264
 Error blocks NeedBraces 'if' construct must use '{}'s. 266
 Error blocks NeedBraces 'if' construct must use '{}'s. 268
 Error blocks NeedBraces 'if' construct must use '{}'s. 270
 Error blocks NeedBraces 'if' construct must use '{}'s. 272
 Error blocks NeedBraces 'if' construct must use '{}'s. 274
 Error javadoc JavadocMethod Expected @param tag for 'filter'. 316
 Error javadoc JavadocMethod Expected @param tag for 'idsOnly'. 316
 Error whitespace ParenPad ')' is not preceded with whitespace. 316
 Error whitespace ParenPad '(' is not followed by whitespace. 324
 Error whitespace ParenPad ')' is not preceded with whitespace. 324
 Error whitespace ParenPad '(' is not followed by whitespace. 346
 Error whitespace ParenPad ')' is not preceded with whitespace. 349
 Error whitespace ParenPad '(' is not followed by whitespace. 349
 Error whitespace ParenPad ')' is not preceded with whitespace. 349
 Error blocks NeedBraces 'if' construct must use '{}'s. 379

fr/paris/lutece/plugins/transparency/business/AppointmentFilter.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'numberOfDays'. 75
 Error javadoc JavadocMethod Expected @param tag for 'orderBy'. 95
 Error coding HiddenField '_bAsc' hides a field. 115
 Error javadoc JavadocMethod Expected @param tag for '_bAsc'. 115
 Error naming ParameterName Name '_bAsc' must match pattern '^[a-z][a-zA-Z0-9]*$'. 115
 Error coding HiddenField '_strLobbyName' hides a field. 135
 Error javadoc JavadocMethod Expected @param tag for '_strLobbyName'. 135
 Error naming ParameterName Name '_strLobbyName' must match pattern '^[a-z][a-zA-Z0-9]*$'. 135
 Error coding HiddenField '_strElectedOfficialName' hides a field. 155
 Error javadoc JavadocMethod Expected @param tag for '_strElectedOfficialName'. 155
 Error naming ParameterName Name '_strElectedOfficialName' must match pattern '^[a-z][a-zA-Z0-9]*$'. 155
 Error coding HiddenField '_strUserId' hides a field. 175
 Error javadoc JavadocMethod Expected @param tag for '_strUserId'. 175
 Error naming ParameterName Name '_strUserId' must match pattern '^[a-z][a-zA-Z0-9]*$'. 175
 Error coding HiddenField '_nIdAppointment' hides a field. 195
 Error javadoc JavadocMethod Expected @param tag for '_nIdAppointment'. 195
 Error naming ParameterName Name '_nIdAppointment' must match pattern '^[a-z][a-zA-Z0-9]*$'. 195
 Error coding HiddenField '_strTitle' hides a field. 215
 Error javadoc JavadocMethod Expected @param tag for '_strTitle'. 215
 Error naming ParameterName Name '_strTitle' must match pattern '^[a-z][a-zA-Z0-9]*$'. 215
 Error coding HiddenField '_listIds' hides a field. 234
 Error naming ParameterName Name '_listIds' must match pattern '^[a-z][a-zA-Z0-9]*$'. 234
 Error whitespace ParenPad ')' is not preceded with whitespace. 234

fr/paris/lutece/plugins/transparency/business/AppointmentHome.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'nId'. 116
 Error javadoc JavadocMethod Expected @param tag for 'filter'. 157
 Error javadoc JavadocMethod Expected @param tag for 'filter'. 174

fr/paris/lutece/plugins/transparency/business/ElectedOfficial.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.validation.constraints.*. 36
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.hibernate.validator.constraints.*. 37
 Error javadoc JavadocMethod Expected @param tag for 'strId'. 77

fr/paris/lutece/plugins/transparency/business/ElectedOfficialAppointment.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Missing a Javadoc comment. 50

fr/paris/lutece/plugins/transparency/business/ElectedOfficialAppointmentDAO.java

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

fr/paris/lutece/plugins/transparency/business/ElectedOfficialAppointmentHome.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'electedOfficialAppointment'. 75

fr/paris/lutece/plugins/transparency/business/ElectedOfficialDAO.java

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

fr/paris/lutece/plugins/transparency/business/ElectedOfficialHome.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'idAdminUser'. 87
 Error javadoc JavadocMethod Expected @param tag for 'idAppointment'. 97
 Error javadoc JavadocMethod Expected @param tag for 'idUser'. 127

fr/paris/lutece/plugins/transparency/business/IAppointmentDAO.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'filter'. 107
 Error javadoc JavadocMethod Expected @param tag for 'filter'. 117

fr/paris/lutece/plugins/transparency/business/IElectedOfficialAppointmentDAO.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'electedOfficialAppointment'. 61

fr/paris/lutece/plugins/transparency/business/IElectedOfficialDAO.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'idAdminUser'. 78
 Error javadoc JavadocMethod Expected @param tag for 'idAppointment'. 88
 Error javadoc JavadocMethod Expected @param tag for 'idUser'. 115

fr/paris/lutece/plugins/transparency/business/ILobbyAppointmentDAO.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'lobbyAppointment'. 61
 Error javadoc JavadocMethod Expected @param tag for 'nIdAppointment'. 70

fr/paris/lutece/plugins/transparency/business/ILobbyDAO.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'strNationalId'. 98
 Error javadoc JavadocMethod Expected @param tag for 'strLikeText'. 108
 Error javadoc JavadocMethod Expected @param tag for 'idAppointment'. 118

fr/paris/lutece/plugins/transparency/business/Lobby.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - javax.validation.constraints.*. 39
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - org.hibernate.validator.constraints.*. 40
 Error javadoc JavadocMethod Expected @param tag for 'jsonNode'. 263

fr/paris/lutece/plugins/transparency/business/LobbyAppointment.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'nIdLobby'. 56
 Error javadoc JavadocMethod Expected @param tag for 'nIdAppointment'. 56

fr/paris/lutece/plugins/transparency/business/LobbyAppointmentDAO.java

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

fr/paris/lutece/plugins/transparency/business/LobbyAppointmentHome.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'nIdAppointment'. 75

fr/paris/lutece/plugins/transparency/business/LobbyDAO.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error blocks NeedBraces 'if' construct must use '{}'s. 193
 Error blocks NeedBraces 'if' construct must use '{}'s. 198

fr/paris/lutece/plugins/transparency/business/LobbyHome.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'strNationalId'. 116
 Error javadoc JavadocMethod Expected @param tag for 'strLikeName'. 136
 Error javadoc JavadocMethod Expected @param tag for 'idAppointment'. 147

fr/paris/lutece/plugins/transparency/rs/Constants.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 39

fr/paris/lutece/plugins/transparency/rs/LobbyRest.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'strLikeText'. 76
 Error javadoc JavadocMethod Expected @param tag for 'strLikeText'. 119
 Error naming LocalVariableName Name '_listLobbies' must match pattern '^[a-z][a-zA-Z0-9]*$'. 121
 Error naming LocalVariableName Name '_lobby' must match pattern '^[a-z][a-zA-Z0-9]*$'. 183

fr/paris/lutece/plugins/transparency/rs/SwaggerRest.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error coding DeclarationOrder Static variable definition in wrong order. 66
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 66
 Error coding DeclarationOrder Static variable definition in wrong order. 67
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 67
 Error coding DeclarationOrder Static variable definition in wrong order. 68
 Error modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 68
 Error javadoc JavadocMethod Expected @param tag for 'request'. 82
 Error javadoc JavadocMethod Expected @param tag for 'strVersion'. 82
 Error javadoc JavadocMethod Expected @throws tag for 'MalformedURLException'. 82
 Error javadoc JavadocMethod Expected @throws tag for 'IOException'. 83
 Error javadoc JavadocMethod Expected an @return tag. 119
 Error javadoc JavadocMethod Expected @param tag for 'strVersion'. 119
 Error javadoc JavadocMethod Expected an @return tag. 133
 Error javadoc JavadocMethod Expected @param tag for 'strBaseUrl'. 133
 Error javadoc JavadocMethod Expected @param tag for 'strVersion'. 133
 Error javadoc JavadocMethod Expected @throws tag for 'MalformedURLException'. 133

fr/paris/lutece/plugins/transparency/service/ExportAppointmentService.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error imports UnusedImports Unused import - org.apache.log4j.Logger. 24
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 30
 Error blocks LeftCurly '{' at column 39 should be on a new line. 30
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 33
 Error javadoc JavadocMethod Missing a Javadoc comment. 58
 Error whitespace ParenPad '(' is not followed by whitespace. 58
 Error whitespace ParenPad '(' is not followed by whitespace. 80
 Error whitespace ParenPad ')' is not preceded with whitespace. 80
 Error whitespace ParenPad '(' is not followed by whitespace. 101
 Error whitespace ParenPad ')' is not preceded with whitespace. 101
 Error javadoc JavadocMethod Expected @param tag for 'appointment'. 114
 Error blocks LeftCurly '{' at column 42 should be on a new line. 121
 Error whitespace ParenPad '(' is not followed by whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 122
 Error whitespace ParenPad ')' is not preceded with whitespace. 127
 Error whitespace ParenPad '(' is not followed by whitespace. 135
 Error whitespace ParenPad ')' is not preceded with whitespace. 135
 Error whitespace ParenPad '(' is not followed by whitespace. 136
 Error whitespace ParenPad '(' is not followed by whitespace. 137
 Error whitespace ParenPad '(' is not followed by whitespace. 137
 Error whitespace ParenPad ')' is not preceded with whitespace. 137
 Error whitespace ParenPad ')' is not preceded with whitespace. 137
 Error whitespace ParenPad '(' is not followed by whitespace. 142
 Error whitespace ParenPad ')' is not preceded with whitespace. 142
 Error whitespace ParenPad '(' is not followed by whitespace. 143
 Error whitespace ParenPad '(' is not followed by whitespace. 144
 Error whitespace ParenPad '(' is not followed by whitespace. 144
 Error whitespace ParenPad ')' is not preceded with whitespace. 144
 Error whitespace ParenPad ')' is not preceded with whitespace. 144

fr/paris/lutece/plugins/transparency/service/LobbyService.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 61
 Error javadoc JavadocMethod Expected @param tag for 'locale'. 84
 Error javadoc JavadocMethod Expected @param tag for 'jsonLobby'. 168
 Error blocks NeedBraces 'if' construct must use '{}'s. 174
 Error blocks NeedBraces 'if' construct must use '{}'s. 176

fr/paris/lutece/plugins/transparency/service/daemon/LobbySynchroDaemon.java

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

fr/paris/lutece/plugins/transparency/web/AbstractManageAppointementsJspBean.java

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

fr/paris/lutece/plugins/transparency/web/AbstractManageLobbiesJspBean.java

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

fr/paris/lutece/plugins/transparency/web/AppointmentJspBean.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error javadoc JavadocMethod Expected @param tag for 'response'. 357
 Error blocks LeftCurly '{' at column 13 should be on a new line. 361
 Error whitespace ParenPad '(' is not followed by whitespace. 362
 Error whitespace ParenPad ')' is not preceded with whitespace. 362
 Error blocks RightCurly '}' at column 9 should be alone on a line. 363
 Error whitespace ParenPad '(' is not followed by whitespace. 363
 Error whitespace ParenPad ')' is not preceded with whitespace. 363
 Error blocks LeftCurly '{' at column 34 should be on a new line. 363

fr/paris/lutece/plugins/transparency/web/AppointmentPublicXPage.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error imports UnusedImports Unused import - fr.paris.lutece.portal.service.security.UserNotSignedException. 42
 Error coding DeclarationOrder Static variable definition in wrong order. 99
 Error naming StaticVariableName Name 'CONSTANT_DEFAULT_SEARCH_PERIOD' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 99
 Error blocks NeedBraces 'if' construct must use '{}'s. 169
 Error whitespace ParenPad ')' is not preceded with whitespace. 194
 Error whitespace ParenPad ')' is not preceded with whitespace. 195

fr/paris/lutece/plugins/transparency/web/AppointmentXPage.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error coding DeclarationOrder Static variable definition in wrong order. 139
 Error naming StaticVariableName Name 'CONSTANT_DEFAULT_SEARCH_PERIOD' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 139
 Error blocks NeedBraces 'if' construct must use '{}'s. 162
 Error blocks NeedBraces 'if' construct must use '{}'s. 223
 Error whitespace ParenPad ')' is not preceded with whitespace. 251
 Error whitespace ParenPad ')' is not preceded with whitespace. 252
 Error javadoc JavadocMethod Expected @throws tag for 'UserNotSignedException'. 292
 Error javadoc JavadocMethod Expected @throws tag for 'UserNotSignedException'. 318
 Error whitespace ParenPad '(' is not followed by whitespace. 336
 Error whitespace ParenPad ')' is not preceded with whitespace. 336
 Error whitespace ParenPad '(' is not followed by whitespace. 360
 Error whitespace ParenPad ')' is not preceded with whitespace. 360
 Error whitespace ParenPad '(' is not followed by whitespace. 360
 Error whitespace ParenPad ')' is not preceded with whitespace. 360
 Error javadoc JavadocMethod Expected @throws tag for 'SiteMessageException'. 391
 Error whitespace ParenPad '(' is not followed by whitespace. 395
 Error whitespace ParenPad ')' is not preceded with whitespace. 395
 Error javadoc JavadocMethod Expected @throws tag for 'UserNotSignedException'. 410
 Error javadoc JavadocMethod Expected @throws tag for 'UserNotSignedException'. 447
 Error javadoc JavadocMethod Expected @throws tag for 'UserNotSignedException'. 490
 Error whitespace ParenPad '(' is not followed by whitespace. 515
 Error whitespace ParenPad ')' is not preceded with whitespace. 515
 Error javadoc JavadocMethod Expected @param tag for 'request'. 547
 Error javadoc JavadocMethod Expected @throws tag for 'UserNotSignedException'. 547
 Error blocks NeedBraces 'if' construct must use '{}'s. 550
 Error blocks NeedBraces 'if' construct must use '{}'s. 556

fr/paris/lutece/plugins/transparency/web/LobbyJspBean.java

Severity Category Rule Message Line
 Error header Header Line does not match expected header line of ' * Copyright (c) 2002-2019, Mairie de Paris'. 2
 Error imports UnusedImports Unused import - fr.paris.lutece.util.httpaccess.HttpAccess. 39
 Error imports UnusedImports Unused import - fr.paris.lutece.portal.service.util.AppPropertiesService. 43
 Error imports UnusedImports Unused import - fr.paris.lutece.util.httpaccess.HttpAccessException. 47
 Error imports UnusedImports Unused import - java.io.IOException. 49
 Error imports UnusedImports Unused import - java.text.MessageFormat. 51
 Error imports UnusedImports Unused import - java.util.Iterator. 52
 Error imports UnusedImports Unused import - com.fasterxml.jackson.databind.JsonNode. 60
 Error imports UnusedImports Unused import - com.fasterxml.jackson.databind.ObjectMapper. 61
 Error imports UnusedImports Unused import - java.util.HashMap. 63

fr/paris/lutece/plugins/transparency/web/LobbyXPage.java

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