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
35 0 0 1270

Files

File
 I
 W
 E
fr/paris/lutece/plugins/identityexport/ExportService.java 0 0 95
fr/paris/lutece/plugins/identityexport/business/Attribute.java 0 0 102
fr/paris/lutece/plugins/identityexport/business/ElasticsearchResponseJSON.java 0 0 158
fr/paris/lutece/plugins/identityexport/business/ExportAttribute.java 0 0 5
fr/paris/lutece/plugins/identityexport/business/ExportAttributeHome.java 0 0 3
fr/paris/lutece/plugins/identityexport/business/ExportRequest.java 0 0 7
fr/paris/lutece/plugins/identityexport/business/ExtractRequestHome.java 0 0 5
fr/paris/lutece/plugins/identityexport/business/ExtractStoreDAO.java 0 0 166
fr/paris/lutece/plugins/identityexport/business/ExtractionDAO.java 0 0 4
fr/paris/lutece/plugins/identityexport/business/IExtractStoreDAO.java 0 0 4
fr/paris/lutece/plugins/identityexport/business/IExtractionDAO.java 0 0 10
fr/paris/lutece/plugins/identityexport/business/IProfilDAO.java 0 0 6
fr/paris/lutece/plugins/identityexport/business/ProfilDAO.java 0 0 30
fr/paris/lutece/plugins/identityexport/business/Profile.java 0 0 47
fr/paris/lutece/plugins/identityexport/business/ProfileHome.java 0 0 1
fr/paris/lutece/plugins/identityexport/daemon/ExtractAutoDaemon.java 0 0 30
fr/paris/lutece/plugins/identityexport/daemon/ExtractDaemon.java 0 0 12
fr/paris/lutece/plugins/identityexport/export/Constants.java 0 0 4
fr/paris/lutece/plugins/identityexport/export/ElasticService.java 0 0 72
fr/paris/lutece/plugins/identityexport/export/ProfileGenerator.java 0 0 18
fr/paris/lutece/plugins/identityexport/rbac/AccessExportProfileResource.java 0 0 3
fr/paris/lutece/plugins/identityexport/rbac/AccessExportProfileResourceIdService.java 0 0 18
fr/paris/lutece/plugins/identityexport/rs/ExportRest.java 0 0 14
fr/paris/lutece/plugins/identityexport/rs/IRestService.java 0 0 8
fr/paris/lutece/plugins/identityexport/rs/error/UncaughtIdentityStoreExceptionMapper.java 0 0 9
fr/paris/lutece/plugins/identityexport/rs/error/UncaughtRequestFormatExceptionMapper.java 0 0 9
fr/paris/lutece/plugins/identityexport/rs/error/UncaughtResourceConsistencyExceptionMapper.java 0 0 16
fr/paris/lutece/plugins/identityexport/rs/error/UncaughtResourceNotFoundExceptionMapper.java 0 0 9
fr/paris/lutece/plugins/identityexport/rs/request/ScheduleExportRequest.java 0 0 48
fr/paris/lutece/plugins/identityexport/service/file/implementation/LocalFileSystemDirectoryFileService.java 0 0 39
fr/paris/lutece/plugins/identityexport/web/AbstractManageExtractionJspBean.java 0 0 7
fr/paris/lutece/plugins/identityexport/web/ExtractionJspBean.java 0 0 145
fr/paris/lutece/plugins/identityexport/web/ProfilJspBean.java 0 0 166

Rules

Category Rule Violations Severity
blocks EmptyBlock 1
 Error
LeftCurly
  • option: "nl"
196
 Error
RightCurly
  • option: "alone"
13
 Error
coding HiddenField 29
 Error
design HideUtilityClassConstructor 3
 Error
VisibilityModifier 11
 Error
header Header
  • fileExtensions: "java"
  • headerFile: "/var/jenkins_home/jobs/admin-github-build/workspace/target/checkstyle-header.txt"
33
 Error
imports UnusedImports 5
 Error
javadoc JavadocMethod 141
 Error
JavadocType 21
 Error
modifier RedundantModifier 2
 Error
naming MemberName
  • format: "^_[a-z](_?[a-zA-Z0-9])*$"
26
 Error
MethodName
  • format: "^[a-z][a-zA-Z0-9]*$"
10
 Error
ParameterName
  • format: "^[a-z][a-zA-Z0-9]*$"
10
 Error
regexp RegexpSinglelineJava
  • format: "System\.exit"
12
 Error
RegexpSinglelineJava
  • format: "System\.out\.println"
12
 Error
whitespace ParenPad
  • option: "space"
756
 Error
WhitespaceAround
  • tokens: "ASSIGN,EQUAL"
1
 Error

Details

fr/paris/lutece/plugins/identityexport/ExportService.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 45
 Error
design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 45
 Error
blocks LeftCurly '{' at column 28 should be on a new line. 45
 Error
whitespace ParenPad '(' is not followed by whitespace. 47
 Error
whitespace ParenPad ')' is not preceded with whitespace. 47
 Error
javadoc JavadocMethod Expected @param tag for 'nIdProfile'. 59
 Error
javadoc JavadocMethod Expected @param tag for 'recipientEmail'. 59
 Error
javadoc JavadocMethod Expected @throws tag for 'IOException'. 59
 Error
whitespace ParenPad '(' is not followed by whitespace. 77
 Error
whitespace ParenPad ')' is not preceded with whitespace. 77
 Error
whitespace ParenPad '(' is not followed by whitespace. 111
 Error
whitespace ParenPad ')' is not preceded with whitespace. 111
 Error
whitespace WhitespaceAround '=' is not followed by whitespace. 120
 Error
whitespace ParenPad '(' is not followed by whitespace. 128
 Error
whitespace ParenPad '(' is not followed by whitespace. 146
 Error
whitespace ParenPad ')' is not preceded with whitespace. 146
 Error
whitespace ParenPad '(' is not followed by whitespace. 154
 Error
whitespace ParenPad ')' is not preceded with whitespace. 154
 Error
whitespace ParenPad '(' is not followed by whitespace. 163
 Error
whitespace ParenPad ')' is not preceded with whitespace. 163
 Error
blocks EmptyBlock Must have at least one statement. 185
 Error
whitespace ParenPad '(' is not followed by whitespace. 197
 Error
whitespace ParenPad ')' is not preceded with whitespace. 197
 Error
whitespace ParenPad '(' is not followed by whitespace. 203
 Error
whitespace ParenPad '(' is not followed by whitespace. 203
 Error
whitespace ParenPad ')' is not preceded with whitespace. 203
 Error
whitespace ParenPad ')' is not preceded with whitespace. 203
 Error
blocks LeftCurly '{' at column 53 should be on a new line. 203
 Error
blocks LeftCurly '{' at column 17 should be on a new line. 204
 Error
whitespace ParenPad '(' is not followed by whitespace. 205
 Error
whitespace ParenPad ')' is not preceded with whitespace. 205
 Error
whitespace ParenPad '(' is not followed by whitespace. 206
 Error
whitespace ParenPad '(' is not followed by whitespace. 206
 Error
whitespace ParenPad ')' is not preceded with whitespace. 206
 Error
whitespace ParenPad ')' is not preceded with whitespace. 206
 Error
blocks RightCurly '}' at column 13 should be alone on a line. 207
 Error
whitespace ParenPad '(' is not followed by whitespace. 207
 Error
whitespace ParenPad ')' is not preceded with whitespace. 207
 Error
blocks LeftCurly '{' at column 41 should be on a new line. 207
 Error
whitespace ParenPad '(' is not followed by whitespace. 212
 Error
whitespace ParenPad '(' is not followed by whitespace. 212
 Error
whitespace ParenPad ')' is not preceded with whitespace. 212
 Error
whitespace ParenPad ')' is not preceded with whitespace. 212
 Error
whitespace ParenPad '(' is not followed by whitespace. 213
 Error
whitespace ParenPad ')' is not preceded with whitespace. 213
 Error
javadoc JavadocMethod Expected @return tag. 225
 Error
whitespace ParenPad '(' is not followed by whitespace. 225
 Error
javadoc JavadocMethod Expected @param tag for 'lstFieldsGuidCuid'. 225
 Error
javadoc JavadocMethod Expected @param tag for 'lstFields'. 225
 Error
whitespace ParenPad ')' is not preceded with whitespace. 225
 Error
whitespace ParenPad '(' is not followed by whitespace. 231
 Error
whitespace ParenPad ')' is not preceded with whitespace. 231
 Error
whitespace ParenPad '(' is not followed by whitespace. 235
 Error
whitespace ParenPad ')' is not preceded with whitespace. 235
 Error
whitespace ParenPad '(' is not followed by whitespace. 241
 Error
whitespace ParenPad ')' is not preceded with whitespace. 241
 Error
whitespace ParenPad '(' is not followed by whitespace. 253
 Error
javadoc JavadocMethod Expected @param tag for 'hit'. 253
 Error
javadoc JavadocMethod Expected @param tag for 'listAttributesKeys'. 253
 Error
javadoc JavadocMethod Expected @param tag for 'listIdFields'. 253
 Error
whitespace ParenPad '(' is not followed by whitespace. 262
 Error
whitespace ParenPad ')' is not preceded with whitespace. 262
 Error
whitespace ParenPad '(' is not followed by whitespace. 292
 Error
whitespace ParenPad ')' is not preceded with whitespace. 292
 Error
whitespace ParenPad '(' is not followed by whitespace. 294
 Error
whitespace ParenPad ')' is not preceded with whitespace. 294
 Error
whitespace ParenPad '(' is not followed by whitespace. 294
 Error
whitespace ParenPad ')' is not preceded with whitespace. 294
 Error
blocks LeftCurly '{' at column 50 should be on a new line. 294
 Error
whitespace ParenPad '(' is not followed by whitespace. 297
 Error
whitespace ParenPad ')' is not preceded with whitespace. 297
 Error
whitespace ParenPad '(' is not followed by whitespace. 297
 Error
whitespace ParenPad ')' is not preceded with whitespace. 297
 Error
whitespace ParenPad '(' is not followed by whitespace. 309
 Error
whitespace ParenPad ')' is not preceded with whitespace. 309
 Error
whitespace ParenPad '(' is not followed by whitespace. 309
 Error
whitespace ParenPad '(' is not followed by whitespace. 309
 Error
whitespace ParenPad ')' is not preceded with whitespace. 309
 Error
whitespace ParenPad ')' is not preceded with whitespace. 309
 Error
whitespace ParenPad '(' is not followed by whitespace. 312
 Error
whitespace ParenPad ')' is not preceded with whitespace. 312
 Error
javadoc JavadocMethod Expected @param tag for 'certifierCode'. 337
 Error
blocks LeftCurly '{' at column 7 should be on a new line. 342
 Error
whitespace ParenPad ')' is not preceded with whitespace. 348
 Error
whitespace ParenPad '(' is not followed by whitespace. 356
 Error
whitespace ParenPad ')' is not preceded with whitespace. 356
 Error
whitespace ParenPad '(' is not followed by whitespace. 364
 Error
whitespace ParenPad ')' is not preceded with whitespace. 364
 Error
blocks RightCurly '}' at column 3 should be alone on a line. 371
 Error
whitespace ParenPad '(' is not followed by whitespace. 371
 Error
whitespace ParenPad ')' is not preceded with whitespace. 371
 Error
blocks LeftCurly '{' at column 38 should be on a new line. 371
 Error
whitespace ParenPad '(' is not followed by whitespace. 372
 Error
whitespace ParenPad ')' is not preceded with whitespace. 372

fr/paris/lutece/plugins/identityexport/business/Attribute.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 3
 Error
blocks LeftCurly '{' at column 24 should be on a new line. 3
 Error
naming MemberName Name 'certificateDate' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 4
 Error
design VisibilityModifier Variable 'certificateDate' must be private and have accessor methods. 4
 Error
naming MemberName Name 'lastUpdateClientCode' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 5
 Error
design VisibilityModifier Variable 'lastUpdateClientCode' must be private and have accessor methods. 5
 Error
naming MemberName Name 'name' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 6
 Error
design VisibilityModifier Variable 'name' must be private and have accessor methods. 6
 Error
naming MemberName Name 'description' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 7
 Error
design VisibilityModifier Variable 'description' must be private and have accessor methods. 7
 Error
naming MemberName Name 'pivot' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 8
 Error
design VisibilityModifier Variable 'pivot' must be private and have accessor methods. 8
 Error
naming MemberName Name 'certifierCode' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 9
 Error
design VisibilityModifier Variable 'certifierCode' must be private and have accessor methods. 9
 Error
naming MemberName Name 'certificateExpirationDate' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 10
 Error
design VisibilityModifier Variable 'certificateExpirationDate' must be private and have accessor methods. 10
 Error
naming MemberName Name 'type' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 11
 Error
design VisibilityModifier Variable 'type' must be private and have accessor methods. 11
 Error
naming MemberName Name 'value' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 12
 Error
design VisibilityModifier Variable 'value' must be private and have accessor methods. 12
 Error
naming MemberName Name 'certifierName' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 13
 Error
design VisibilityModifier Variable 'certifierName' must be private and have accessor methods. 13
 Error
naming MemberName Name 'key' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 14
 Error
design VisibilityModifier Variable 'key' must be private and have accessor methods. 14
 Error
javadoc JavadocMethod Missing a Javadoc comment. 17
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 17
 Error
javadoc JavadocMethod Missing a Javadoc comment. 20
 Error
whitespace ParenPad '(' is not followed by whitespace. 20
 Error
coding HiddenField 'certificateDate' hides a field. 20
 Error
whitespace ParenPad ')' is not preceded with whitespace. 20
 Error
blocks LeftCurly '{' at column 55 should be on a new line. 20
 Error
javadoc JavadocMethod Missing a Javadoc comment. 23
 Error
blocks LeftCurly '{' at column 42 should be on a new line. 23
 Error
javadoc JavadocMethod Missing a Javadoc comment. 26
 Error
whitespace ParenPad '(' is not followed by whitespace. 26
 Error
coding HiddenField 'lastUpdateClientCode' hides a field. 26
 Error
whitespace ParenPad ')' is not preceded with whitespace. 26
 Error
blocks LeftCurly '{' at column 67 should be on a new line. 26
 Error
javadoc JavadocMethod Missing a Javadoc comment. 29
 Error
blocks LeftCurly '{' at column 26 should be on a new line. 29
 Error
javadoc JavadocMethod Missing a Javadoc comment. 32
 Error
whitespace ParenPad '(' is not followed by whitespace. 32
 Error
coding HiddenField 'name' hides a field. 32
 Error
whitespace ParenPad ')' is not preceded with whitespace. 32
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 32
 Error
javadoc JavadocMethod Missing a Javadoc comment. 35
 Error
blocks LeftCurly '{' at column 33 should be on a new line. 35
 Error
javadoc JavadocMethod Missing a Javadoc comment. 38
 Error
whitespace ParenPad '(' is not followed by whitespace. 38
 Error
coding HiddenField 'description' hides a field. 38
 Error
whitespace ParenPad ')' is not preceded with whitespace. 38
 Error
blocks LeftCurly '{' at column 49 should be on a new line. 38
 Error
javadoc JavadocMethod Missing a Javadoc comment. 41
 Error
blocks LeftCurly '{' at column 27 should be on a new line. 41
 Error
javadoc JavadocMethod Missing a Javadoc comment. 44
 Error
whitespace ParenPad '(' is not followed by whitespace. 44
 Error
coding HiddenField 'pivot' hides a field. 44
 Error
whitespace ParenPad ')' is not preceded with whitespace. 44
 Error
blocks LeftCurly '{' at column 38 should be on a new line. 44
 Error
javadoc JavadocMethod Missing a Javadoc comment. 47
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 47
 Error
javadoc JavadocMethod Missing a Javadoc comment. 50
 Error
whitespace ParenPad '(' is not followed by whitespace. 50
 Error
coding HiddenField 'certifierCode' hides a field. 50
 Error
whitespace ParenPad ')' is not preceded with whitespace. 50
 Error
blocks LeftCurly '{' at column 53 should be on a new line. 50
 Error
javadoc JavadocMethod Missing a Javadoc comment. 53
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 53
 Error
javadoc JavadocMethod Missing a Javadoc comment. 56
 Error
whitespace ParenPad '(' is not followed by whitespace. 56
 Error
coding HiddenField 'certificateExpirationDate' hides a field. 56
 Error
whitespace ParenPad ')' is not preceded with whitespace. 56
 Error
blocks LeftCurly '{' at column 77 should be on a new line. 56
 Error
javadoc JavadocMethod Missing a Javadoc comment. 59
 Error
blocks LeftCurly '{' at column 26 should be on a new line. 59
 Error
javadoc JavadocMethod Missing a Javadoc comment. 62
 Error
whitespace ParenPad '(' is not followed by whitespace. 62
 Error
coding HiddenField 'type' hides a field. 62
 Error
whitespace ParenPad ')' is not preceded with whitespace. 62
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 62
 Error
javadoc JavadocMethod Missing a Javadoc comment. 65
 Error
blocks LeftCurly '{' at column 27 should be on a new line. 65
 Error
javadoc JavadocMethod Missing a Javadoc comment. 68
 Error
whitespace ParenPad '(' is not followed by whitespace. 68
 Error
coding HiddenField 'value' hides a field. 68
 Error
whitespace ParenPad ')' is not preceded with whitespace. 68
 Error
blocks LeftCurly '{' at column 37 should be on a new line. 68
 Error
javadoc JavadocMethod Missing a Javadoc comment. 71
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 71
 Error
javadoc JavadocMethod Missing a Javadoc comment. 74
 Error
whitespace ParenPad '(' is not followed by whitespace. 74
 Error
coding HiddenField 'certifierName' hides a field. 74
 Error
whitespace ParenPad ')' is not preceded with whitespace. 74
 Error
blocks LeftCurly '{' at column 53 should be on a new line. 74
 Error
javadoc JavadocMethod Missing a Javadoc comment. 77
 Error
blocks LeftCurly '{' at column 25 should be on a new line. 77
 Error
javadoc JavadocMethod Missing a Javadoc comment. 80
 Error
whitespace ParenPad '(' is not followed by whitespace. 80
 Error
coding HiddenField 'key' hides a field. 80
 Error
whitespace ParenPad ')' is not preceded with whitespace. 80
 Error
blocks LeftCurly '{' at column 33 should be on a new line. 80

fr/paris/lutece/plugins/identityexport/business/ElasticsearchResponseJSON.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 5
 Error
blocks LeftCurly '{' at column 40 should be on a new line. 5
 Error
naming MemberName Name 'took' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 6
 Error
naming MemberName Name 'timedOut' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 7
 Error
naming MemberName Name 'shards' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 8
 Error
naming MemberName Name 'hits' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 9
 Error
naming MemberName Name 'pit_id' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 11
 Error
javadoc JavadocMethod Missing a Javadoc comment. 13
 Error
naming MethodName Name 'get_scroll_id' must match pattern '^[a-z][a-zA-Z0-9]*$'. 13
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 13
 Error
javadoc JavadocMethod Missing a Javadoc comment. 17
 Error
naming MethodName Name 'set_scroll_id' must match pattern '^[a-z][a-zA-Z0-9]*$'. 17
 Error
whitespace ParenPad '(' is not followed by whitespace. 17
 Error
coding HiddenField '_scroll_id' hides a field. 17
 Error
naming ParameterName Name '_scroll_id' must match pattern '^[a-z][a-zA-Z0-9]*$'. 17
 Error
whitespace ParenPad ')' is not preceded with whitespace. 17
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 17
 Error
javadoc JavadocMethod Missing a Javadoc comment. 21
 Error
blocks LeftCurly '{' at column 23 should be on a new line. 21
 Error
javadoc JavadocMethod Missing a Javadoc comment. 25
 Error
whitespace ParenPad '(' is not followed by whitespace. 25
 Error
coding HiddenField 'took' hides a field. 25
 Error
whitespace ParenPad ')' is not preceded with whitespace. 25
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 25
 Error
javadoc JavadocMethod Missing a Javadoc comment. 29
 Error
blocks LeftCurly '{' at column 33 should be on a new line. 29
 Error
javadoc JavadocMethod Missing a Javadoc comment. 33
 Error
whitespace ParenPad '(' is not followed by whitespace. 33
 Error
coding HiddenField 'timedOut' hides a field. 33
 Error
whitespace ParenPad ')' is not preceded with whitespace. 33
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 33
 Error
javadoc JavadocMethod Missing a Javadoc comment. 37
 Error
blocks LeftCurly '{' at column 31 should be on a new line. 37
 Error
javadoc JavadocMethod Missing a Javadoc comment. 41
 Error
whitespace ParenPad '(' is not followed by whitespace. 41
 Error
coding HiddenField 'shards' hides a field. 41
 Error
whitespace ParenPad ')' is not preceded with whitespace. 41
 Error
blocks LeftCurly '{' at column 42 should be on a new line. 41
 Error
javadoc JavadocMethod Missing a Javadoc comment. 45
 Error
blocks LeftCurly '{' at column 27 should be on a new line. 45
 Error
javadoc JavadocMethod Missing a Javadoc comment. 49
 Error
whitespace ParenPad '(' is not followed by whitespace. 49
 Error
coding HiddenField 'hits' hides a field. 49
 Error
whitespace ParenPad ')' is not preceded with whitespace. 49
 Error
blocks LeftCurly '{' at column 36 should be on a new line. 49
 Error
javadoc JavadocMethod Missing a Javadoc comment. 53
 Error
naming MethodName Name 'getPit_id' must match pattern '^[a-z][a-zA-Z0-9]*$'. 53
 Error
blocks LeftCurly '{' at column 31 should be on a new line. 53
 Error
javadoc JavadocMethod Missing a Javadoc comment. 57
 Error
naming MethodName Name 'setPit_id' must match pattern '^[a-z][a-zA-Z0-9]*$'. 57
 Error
whitespace ParenPad '(' is not followed by whitespace. 57
 Error
coding HiddenField 'pit_id' hides a field. 57
 Error
naming ParameterName Name 'pit_id' must match pattern '^[a-z][a-zA-Z0-9]*$'. 57
 Error
whitespace ParenPad ')' is not preceded with whitespace. 57
 Error
blocks LeftCurly '{' at column 39 should be on a new line. 57
 Error
javadoc JavadocType Missing a Javadoc comment. 61
 Error
blocks LeftCurly '{' at column 29 should be on a new line. 61
 Error
javadoc JavadocType Missing a Javadoc comment. 65
 Error
blocks LeftCurly '{' at column 30 should be on a new line. 65
 Error
naming MemberName Name 'total' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 66
 Error
naming MemberName Name 'hits' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 67
 Error
javadoc JavadocMethod Missing a Javadoc comment. 69
 Error
blocks LeftCurly '{' at column 33 should be on a new line. 69
 Error
javadoc JavadocMethod Missing a Javadoc comment. 73
 Error
whitespace ParenPad '(' is not followed by whitespace. 73
 Error
coding HiddenField 'total' hides a field. 73
 Error
whitespace ParenPad ')' is not preceded with whitespace. 73
 Error
blocks LeftCurly '{' at column 43 should be on a new line. 73
 Error
javadoc JavadocMethod Missing a Javadoc comment. 77
 Error
blocks LeftCurly '{' at column 36 should be on a new line. 77
 Error
javadoc JavadocMethod Missing a Javadoc comment. 81
 Error
whitespace ParenPad '(' is not followed by whitespace. 81
 Error
coding HiddenField 'hits' hides a field. 81
 Error
whitespace ParenPad ')' is not preceded with whitespace. 81
 Error
blocks LeftCurly '{' at column 45 should be on a new line. 81
 Error
javadoc JavadocType Missing a Javadoc comment. 86
 Error
blocks LeftCurly '{' at column 31 should be on a new line. 86
 Error
naming MemberName Name 'value' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 87
 Error
naming MemberName Name 'relation' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 88
 Error
javadoc JavadocMethod Missing a Javadoc comment. 90
 Error
blocks LeftCurly '{' at column 31 should be on a new line. 90
 Error
javadoc JavadocMethod Missing a Javadoc comment. 94
 Error
whitespace ParenPad '(' is not followed by whitespace. 94
 Error
coding HiddenField 'value' hides a field. 94
 Error
whitespace ParenPad ')' is not preceded with whitespace. 94
 Error
blocks LeftCurly '{' at column 41 should be on a new line. 94
 Error
javadoc JavadocMethod Missing a Javadoc comment. 98
 Error
blocks LeftCurly '{' at column 37 should be on a new line. 98
 Error
javadoc JavadocMethod Missing a Javadoc comment. 102
 Error
whitespace ParenPad '(' is not followed by whitespace. 102
 Error
coding HiddenField 'relation' hides a field. 102
 Error
whitespace ParenPad ')' is not preceded with whitespace. 102
 Error
blocks LeftCurly '{' at column 50 should be on a new line. 102
 Error
javadoc JavadocType Missing a Javadoc comment. 107
 Error
blocks LeftCurly '{' at column 29 should be on a new line. 107
 Error
naming MemberName Name 'sort' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 113
 Error
javadoc JavadocMethod Missing a Javadoc comment. 115
 Error
naming MethodName Name 'get_source' must match pattern '^[a-z][a-zA-Z0-9]*$'. 115
 Error
blocks LeftCurly '{' at column 30 should be on a new line. 115
 Error
javadoc JavadocMethod Missing a Javadoc comment. 118
 Error
naming MethodName Name 'set_source' must match pattern '^[a-z][a-zA-Z0-9]*$'. 118
 Error
whitespace ParenPad '(' is not followed by whitespace. 118
 Error
coding HiddenField '_source' hides a field. 118
 Error
naming ParameterName Name '_source' must match pattern '^[a-z][a-zA-Z0-9]*$'. 118
 Error
whitespace ParenPad ')' is not preceded with whitespace. 118
 Error
blocks LeftCurly '{' at column 42 should be on a new line. 118
 Error
javadoc JavadocMethod Missing a Javadoc comment. 121
 Error
naming MethodName Name 'get_score' must match pattern '^[a-z][a-zA-Z0-9]*$'. 121
 Error
blocks LeftCurly '{' at column 29 should be on a new line. 121
 Error
javadoc JavadocMethod Missing a Javadoc comment. 124
 Error
naming MethodName Name 'set_score' must match pattern '^[a-z][a-zA-Z0-9]*$'. 124
 Error
whitespace ParenPad '(' is not followed by whitespace. 124
 Error
coding HiddenField '_score' hides a field. 124
 Error
naming ParameterName Name '_score' must match pattern '^[a-z][a-zA-Z0-9]*$'. 124
 Error
whitespace ParenPad ')' is not preceded with whitespace. 124
 Error
blocks LeftCurly '{' at column 40 should be on a new line. 124
 Error
javadoc JavadocMethod Missing a Javadoc comment. 127
 Error
naming MethodName Name 'get_id' must match pattern '^[a-z][a-zA-Z0-9]*$'. 127
 Error
blocks LeftCurly '{' at column 26 should be on a new line. 127
 Error
javadoc JavadocMethod Missing a Javadoc comment. 130
 Error
naming MethodName Name 'set_id' must match pattern '^[a-z][a-zA-Z0-9]*$'. 130
 Error
whitespace ParenPad '(' is not followed by whitespace. 130
 Error
coding HiddenField '_id' hides a field. 130
 Error
naming ParameterName Name '_id' must match pattern '^[a-z][a-zA-Z0-9]*$'. 130
 Error
whitespace ParenPad ')' is not preceded with whitespace. 130
 Error
blocks LeftCurly '{' at column 34 should be on a new line. 130
 Error
javadoc JavadocMethod Missing a Javadoc comment. 133
 Error
blocks LeftCurly '{' at column 29 should be on a new line. 133
 Error
javadoc JavadocMethod Missing a Javadoc comment. 136
 Error
whitespace ParenPad '(' is not followed by whitespace. 136
 Error
coding HiddenField 'sort' hides a field. 136
 Error
whitespace ParenPad ')' is not preceded with whitespace. 136
 Error
blocks LeftCurly '{' at column 38 should be on a new line. 136
 Error
javadoc JavadocType Missing a Javadoc comment. 142
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 142
 Error
naming MemberName Name 'customerId' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 143
 Error
naming MemberName Name 'connectionId' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 144
 Error
naming MemberName Name 'attributes' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 145
 Error
javadoc JavadocMethod Missing a Javadoc comment. 148
 Error
blocks LeftCurly '{' at column 33 should be on a new line. 148
 Error
javadoc JavadocMethod Missing a Javadoc comment. 151
 Error
whitespace ParenPad '(' is not followed by whitespace. 151
 Error
whitespace ParenPad ')' is not preceded with whitespace. 151
 Error
blocks LeftCurly '{' at column 41 should be on a new line. 151
 Error
javadoc JavadocMethod Missing a Javadoc comment. 154
 Error
blocks LeftCurly '{' at column 33 should be on a new line. 154
 Error
javadoc JavadocMethod Missing a Javadoc comment. 157
 Error
whitespace ParenPad '(' is not followed by whitespace. 157
 Error
whitespace ParenPad ')' is not preceded with whitespace. 157
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 157
 Error
javadoc JavadocMethod Missing a Javadoc comment. 160
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 160
 Error
javadoc JavadocMethod Missing a Javadoc comment. 163
 Error
whitespace ParenPad '(' is not followed by whitespace. 163
 Error
coding HiddenField 'connectionId' hides a field. 163
 Error
whitespace ParenPad ')' is not preceded with whitespace. 163
 Error
blocks LeftCurly '{' at column 52 should be on a new line. 163

fr/paris/lutece/plugins/identityexport/business/ExportAttribute.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 27 should be on a new line. 96
 Error
whitespace ParenPad '(' is not followed by whitespace. 104
 Error
whitespace ParenPad ')' is not preceded with whitespace. 104
 Error
blocks LeftCurly '{' at column 42 should be on a new line. 104

fr/paris/lutece/plugins/identityexport/business/ExportAttributeHome.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 JavadocMethod Expected @param tag for 'nIdProfil'. 148
 Error
javadoc JavadocMethod Expected @param tag for 'nIdProfil'. 157

fr/paris/lutece/plugins/identityexport/business/ExportRequest.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 JavadocMethod Unused @param tag for 'The'. 59
 Error
javadoc JavadocMethod Expected @param tag for 'strToken'. 61
 Error
blocks LeftCurly '{' at column 39 should be on a new line. 88
 Error
whitespace ParenPad '(' is not followed by whitespace. 96
 Error
whitespace ParenPad ')' is not preceded with whitespace. 96
 Error
blocks LeftCurly '{' at column 64 should be on a new line. 96

fr/paris/lutece/plugins/identityexport/business/ExtractRequestHome.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 JavadocMethod Unused @param tag for 'extractDaemon'. 65
 Error
javadoc JavadocMethod Expected @param tag for 'extractRequest'. 68
 Error
javadoc JavadocMethod Unused @param tag for 'extractDaemon'. 77
 Error
javadoc JavadocMethod Expected @param tag for 'extractRequest'. 80

fr/paris/lutece/plugins/identityexport/business/ExtractStoreDAO.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 64 should be on a new line. 49
 Error
whitespace ParenPad '(' is not followed by whitespace. 63
 Error
whitespace ParenPad ')' is not preceded with whitespace. 63
 Error
blocks LeftCurly '{' at column 65 should be on a new line. 63
 Error
whitespace ParenPad '(' is not followed by whitespace. 64
 Error
whitespace ParenPad '(' is not followed by whitespace. 64
 Error
whitespace ParenPad ')' is not preceded with whitespace. 64
 Error
whitespace ParenPad ')' is not preceded with whitespace. 64
 Error
blocks LeftCurly '{' at column 98 should be on a new line. 64
 Error
whitespace ParenPad '(' is not followed by whitespace. 66
 Error
whitespace ParenPad ')' is not preceded with whitespace. 66
 Error
whitespace ParenPad '(' is not followed by whitespace. 67
 Error
whitespace ParenPad ')' is not preceded with whitespace. 67
 Error
whitespace ParenPad '(' is not followed by whitespace. 68
 Error
whitespace ParenPad ')' is not preceded with whitespace. 68
 Error
whitespace ParenPad '(' is not followed by whitespace. 80
 Error
whitespace ParenPad ')' is not preceded with whitespace. 80
 Error
blocks LeftCurly '{' at column 63 should be on a new line. 80
 Error
whitespace ParenPad '(' is not followed by whitespace. 81
 Error
whitespace ParenPad '(' is not followed by whitespace. 81
 Error
whitespace ParenPad ')' is not preceded with whitespace. 81
 Error
whitespace ParenPad ')' is not preceded with whitespace. 81
 Error
blocks LeftCurly '{' at column 65 should be on a new line. 81
 Error
whitespace ParenPad '(' is not followed by whitespace. 82
 Error
whitespace ParenPad ')' is not preceded with whitespace. 82
 Error
whitespace ParenPad '(' is not followed by whitespace. 86
 Error
whitespace ParenPad ')' is not preceded with whitespace. 86
 Error
blocks LeftCurly '{' at column 24 should be on a new line. 86
 Error
whitespace ParenPad '(' is not followed by whitespace. 90
 Error
whitespace ParenPad '(' is not followed by whitespace. 90
 Error
whitespace ParenPad ')' is not preceded with whitespace. 90
 Error
whitespace ParenPad ')' is not preceded with whitespace. 90
 Error
whitespace ParenPad '(' is not followed by whitespace. 91
 Error
whitespace ParenPad '(' is not followed by whitespace. 91
 Error
whitespace ParenPad ')' is not preceded with whitespace. 91
 Error
whitespace ParenPad ')' is not preceded with whitespace. 91
 Error
whitespace ParenPad '(' is not followed by whitespace. 92
 Error
whitespace ParenPad '(' is not followed by whitespace. 92
 Error
whitespace ParenPad ')' is not preceded with whitespace. 92
 Error
whitespace ParenPad ')' is not preceded with whitespace. 92
 Error
whitespace ParenPad '(' is not followed by whitespace. 95
 Error
whitespace ParenPad ')' is not preceded with whitespace. 95
 Error
whitespace ParenPad '(' is not followed by whitespace. 103
 Error
whitespace ParenPad ')' is not preceded with whitespace. 103
 Error
blocks LeftCurly '{' at column 46 should be on a new line. 103
 Error
whitespace ParenPad '(' is not followed by whitespace. 104
 Error
whitespace ParenPad '(' is not followed by whitespace. 104
 Error
whitespace ParenPad ')' is not preceded with whitespace. 104
 Error
whitespace ParenPad ')' is not preceded with whitespace. 104
 Error
blocks LeftCurly '{' at column 65 should be on a new line. 104
 Error
whitespace ParenPad '(' is not followed by whitespace. 105
 Error
whitespace ParenPad ')' is not preceded with whitespace. 105
 Error
whitespace ParenPad '(' is not followed by whitespace. 114
 Error
whitespace ParenPad ')' is not preceded with whitespace. 114
 Error
blocks LeftCurly '{' at column 64 should be on a new line. 114
 Error
whitespace ParenPad '(' is not followed by whitespace. 115
 Error
whitespace ParenPad '(' is not followed by whitespace. 115
 Error
whitespace ParenPad ')' is not preceded with whitespace. 115
 Error
whitespace ParenPad ')' is not preceded with whitespace. 115
 Error
blocks LeftCurly '{' at column 65 should be on a new line. 115
 Error
whitespace ParenPad '(' is not followed by whitespace. 118
 Error
whitespace ParenPad ')' is not preceded with whitespace. 118
 Error
whitespace ParenPad '(' is not followed by whitespace. 119
 Error
whitespace ParenPad ')' is not preceded with whitespace. 119
 Error
whitespace ParenPad '(' is not followed by whitespace. 120
 Error
whitespace ParenPad ')' is not preceded with whitespace. 120
 Error
whitespace ParenPad '(' is not followed by whitespace. 121
 Error
whitespace ParenPad ')' is not preceded with whitespace. 121
 Error
whitespace ParenPad '(' is not followed by whitespace. 131
 Error
whitespace ParenPad ')' is not preceded with whitespace. 131
 Error
blocks LeftCurly '{' at column 69 should be on a new line. 131
 Error
whitespace ParenPad '(' is not followed by whitespace. 133
 Error
whitespace ParenPad '(' is not followed by whitespace. 133
 Error
whitespace ParenPad ')' is not preceded with whitespace. 133
 Error
whitespace ParenPad ')' is not preceded with whitespace. 133
 Error
blocks LeftCurly '{' at column 68 should be on a new line. 133
 Error
whitespace ParenPad '(' is not followed by whitespace. 136
 Error
whitespace ParenPad ')' is not preceded with whitespace. 136
 Error
blocks LeftCurly '{' at column 27 should be on a new line. 136
 Error
whitespace ParenPad '(' is not followed by whitespace. 140
 Error
whitespace ParenPad '(' is not followed by whitespace. 140
 Error
whitespace ParenPad ')' is not preceded with whitespace. 140
 Error
whitespace ParenPad ')' is not preceded with whitespace. 140
 Error
whitespace ParenPad '(' is not followed by whitespace. 141
 Error
whitespace ParenPad '(' is not followed by whitespace. 141
 Error
whitespace ParenPad ')' is not preceded with whitespace. 141
 Error
whitespace ParenPad ')' is not preceded with whitespace. 141
 Error
whitespace ParenPad '(' is not followed by whitespace. 142
 Error
whitespace ParenPad '(' is not followed by whitespace. 142
 Error
whitespace ParenPad ')' is not preceded with whitespace. 142
 Error
whitespace ParenPad ')' is not preceded with whitespace. 142
 Error
whitespace ParenPad '(' is not followed by whitespace. 144
 Error
whitespace ParenPad ')' is not preceded with whitespace. 144
 Error
whitespace ParenPad '(' is not followed by whitespace. 155
 Error
whitespace ParenPad ')' is not preceded with whitespace. 155
 Error
blocks LeftCurly '{' at column 65 should be on a new line. 155
 Error
whitespace ParenPad '(' is not followed by whitespace. 157
 Error
whitespace ParenPad '(' is not followed by whitespace. 157
 Error
whitespace ParenPad ')' is not preceded with whitespace. 157
 Error
whitespace ParenPad ')' is not preceded with whitespace. 157
 Error
blocks LeftCurly '{' at column 71 should be on a new line. 157
 Error
whitespace ParenPad '(' is not followed by whitespace. 160
 Error
whitespace ParenPad ')' is not preceded with whitespace. 160
 Error
blocks LeftCurly '{' at column 27 should be on a new line. 160
 Error
whitespace ParenPad '(' is not followed by whitespace. 161
 Error
whitespace ParenPad '(' is not followed by whitespace. 161
 Error
whitespace ParenPad ')' is not preceded with whitespace. 161
 Error
whitespace ParenPad ')' is not preceded with whitespace. 161
 Error
whitespace ParenPad '(' is not followed by whitespace. 172
 Error
whitespace ParenPad ')' is not preceded with whitespace. 172
 Error
blocks LeftCurly '{' at column 72 should be on a new line. 172
 Error
whitespace ParenPad '(' is not followed by whitespace. 174
 Error
whitespace ParenPad '(' is not followed by whitespace. 174
 Error
whitespace ParenPad ')' is not preceded with whitespace. 174
 Error
whitespace ParenPad ')' is not preceded with whitespace. 174
 Error
blocks LeftCurly '{' at column 68 should be on a new line. 174
 Error
whitespace ParenPad '(' is not followed by whitespace. 177
 Error
whitespace ParenPad ')' is not preceded with whitespace. 177
 Error
blocks LeftCurly '{' at column 27 should be on a new line. 177
 Error
whitespace ParenPad '(' is not followed by whitespace. 178
 Error
whitespace ParenPad '(' is not followed by whitespace. 178
 Error
whitespace ParenPad ')' is not preceded with whitespace. 178
 Error
whitespace ParenPad '(' is not followed by whitespace. 178
 Error
whitespace ParenPad ')' is not preceded with whitespace. 178
 Error
whitespace ParenPad ')' is not preceded with whitespace. 178
 Error
whitespace ParenPad '(' is not followed by whitespace. 189
 Error
whitespace ParenPad ')' is not preceded with whitespace. 189
 Error
blocks LeftCurly '{' at column 97 should be on a new line. 189
 Error
whitespace ParenPad '(' is not followed by whitespace. 194
 Error
whitespace ParenPad ')' is not preceded with whitespace. 194
 Error
blocks LeftCurly '{' at column 27 should be on a new line. 194
 Error
whitespace ParenPad '(' is not followed by whitespace. 195
 Error
whitespace ParenPad ')' is not preceded with whitespace. 195
 Error
blocks LeftCurly '{' at column 45 should be on a new line. 195
 Error
whitespace ParenPad '(' is not followed by whitespace. 196
 Error
whitespace ParenPad ')' is not preceded with whitespace. 196
 Error
whitespace ParenPad '(' is not followed by whitespace. 199
 Error
whitespace ParenPad ')' is not preceded with whitespace. 199
 Error
whitespace ParenPad '(' is not followed by whitespace. 202
 Error
whitespace ParenPad '(' is not followed by whitespace. 202
 Error
whitespace ParenPad ')' is not preceded with whitespace. 202
 Error
whitespace ParenPad ')' is not preceded with whitespace. 202
 Error
blocks LeftCurly '{' at column 54 should be on a new line. 202
 Error
whitespace ParenPad '(' is not followed by whitespace. 204
 Error
whitespace ParenPad ')' is not preceded with whitespace. 204
 Error
blocks LeftCurly '{' at column 31 should be on a new line. 204
 Error
whitespace ParenPad '(' is not followed by whitespace. 205
 Error
whitespace ParenPad ')' is not preceded with whitespace. 205
 Error
whitespace ParenPad '(' is not followed by whitespace. 209
 Error
whitespace ParenPad ')' is not preceded with whitespace. 209
 Error
blocks LeftCurly '{' at column 28 should be on a new line. 209
 Error
whitespace ParenPad '(' is not followed by whitespace. 213
 Error
whitespace ParenPad '(' is not followed by whitespace. 213
 Error
whitespace ParenPad ')' is not preceded with whitespace. 213
 Error
whitespace ParenPad ')' is not preceded with whitespace. 213
 Error
whitespace ParenPad '(' is not followed by whitespace. 214
 Error
whitespace ParenPad '(' is not followed by whitespace. 214
 Error
whitespace ParenPad ')' is not preceded with whitespace. 214
 Error
whitespace ParenPad ')' is not preceded with whitespace. 214
 Error
whitespace ParenPad '(' is not followed by whitespace. 215
 Error
whitespace ParenPad '(' is not followed by whitespace. 215
 Error
whitespace ParenPad ')' is not preceded with whitespace. 215
 Error
whitespace ParenPad ')' is not preceded with whitespace. 215
 Error
whitespace ParenPad '(' is not followed by whitespace. 217
 Error
whitespace ParenPad ')' is not preceded with whitespace. 217

fr/paris/lutece/plugins/identityexport/business/ExtractionDAO.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 98 should be on a new line. 226
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 233
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 244

fr/paris/lutece/plugins/identityexport/business/IExtractStoreDAO.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 JavadocMethod Unused @param tag for 'plugin'. 102
 Error
javadoc JavadocMethod Expected @param tag for '_plugin'. 106
 Error
naming ParameterName Name '_plugin' must match pattern '^[a-z][a-zA-Z0-9]*$'. 106

fr/paris/lutece/plugins/identityexport/business/IExtractionDAO.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 JavadocMethod Unused @param tag for 'plugin'. 102
 Error
javadoc JavadocMethod Expected @param tag for '_plugin'. 106
 Error
naming ParameterName Name '_plugin' must match pattern '^[a-z][a-zA-Z0-9]*$'. 106
 Error
whitespace ParenPad '(' is not followed by whitespace. 114
 Error
whitespace ParenPad ')' is not preceded with whitespace. 114
 Error
modifier RedundantModifier Redundant 'final' modifier. 122
 Error
modifier RedundantModifier Redundant 'final' modifier. 122
 Error
whitespace ParenPad '(' is not followed by whitespace. 129
 Error
whitespace ParenPad ')' is not preceded with whitespace. 129

fr/paris/lutece/plugins/identityexport/business/IProfilDAO.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 JavadocMethod Unused @param tag for 'plugin'. 102
 Error
javadoc JavadocMethod Expected @param tag for '_plugin'. 106
 Error
naming ParameterName Name '_plugin' must match pattern '^[a-z][a-zA-Z0-9]*$'. 106
 Error
whitespace ParenPad '(' is not followed by whitespace. 113
 Error
whitespace ParenPad ')' is not preceded with whitespace. 113

fr/paris/lutece/plugins/identityexport/business/ProfilDAO.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 JavadocMethod Missing a Javadoc comment. 64
 Error
whitespace ParenPad '(' is not followed by whitespace. 64
 Error
whitespace ParenPad ')' is not preceded with whitespace. 64
 Error
blocks LeftCurly '{' at column 49 should be on a new line. 64
 Error
whitespace ParenPad '(' is not followed by whitespace. 76
 Error
whitespace ParenPad ')' is not preceded with whitespace. 76
 Error
whitespace ParenPad '(' is not followed by whitespace. 99
 Error
whitespace ParenPad ')' is not preceded with whitespace. 99
 Error
blocks LeftCurly '{' at column 58 should be on a new line. 99
 Error
whitespace ParenPad '(' is not followed by whitespace. 100
 Error
whitespace ParenPad ')' is not preceded with whitespace. 100
 Error
blocks RightCurly '}' at column 13 should be alone on a line. 101
 Error
blocks LeftCurly '{' at column 20 should be on a new line. 101
 Error
whitespace ParenPad '(' is not followed by whitespace. 102
 Error
whitespace ParenPad ')' is not preceded with whitespace. 102
 Error
whitespace ParenPad '(' is not followed by whitespace. 104
 Error
whitespace ParenPad ')' is not preceded with whitespace. 104
 Error
whitespace ParenPad '(' is not followed by whitespace. 163
 Error
whitespace ParenPad ')' is not preceded with whitespace. 163
 Error
blocks LeftCurly '{' at column 58 should be on a new line. 163
 Error
whitespace ParenPad '(' is not followed by whitespace. 164
 Error
whitespace ParenPad ')' is not preceded with whitespace. 164
 Error
blocks RightCurly '}' at column 13 should be alone on a line. 165
 Error
blocks LeftCurly '{' at column 20 should be on a new line. 165
 Error
whitespace ParenPad '(' is not followed by whitespace. 166
 Error
whitespace ParenPad ')' is not preceded with whitespace. 166
 Error
blocks LeftCurly '{' at column 86 should be on a new line. 239
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 246
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 257

fr/paris/lutece/plugins/identityexport/business/Profile.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 JavadocMethod Missing a Javadoc comment. 150
 Error
blocks LeftCurly '{' at column 30 should be on a new line. 150
 Error
javadoc JavadocMethod Missing a Javadoc comment. 154
 Error
whitespace ParenPad '(' is not followed by whitespace. 154
 Error
whitespace ParenPad ')' is not preceded with whitespace. 154
 Error
blocks LeftCurly '{' at column 45 should be on a new line. 154
 Error
javadoc JavadocMethod Missing a Javadoc comment. 158
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 158
 Error
javadoc JavadocMethod Missing a Javadoc comment. 162
 Error
whitespace ParenPad '(' is not followed by whitespace. 162
 Error
whitespace ParenPad ')' is not preceded with whitespace. 162
 Error
blocks LeftCurly '{' at column 49 should be on a new line. 162
 Error
javadoc JavadocMethod Missing a Javadoc comment. 166
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 166
 Error
javadoc JavadocMethod Missing a Javadoc comment. 170
 Error
whitespace ParenPad '(' is not followed by whitespace. 170
 Error
whitespace ParenPad ')' is not preceded with whitespace. 170
 Error
blocks LeftCurly '{' at column 49 should be on a new line. 170
 Error
javadoc JavadocMethod Missing a Javadoc comment. 174
 Error
blocks LeftCurly '{' at column 33 should be on a new line. 174
 Error
javadoc JavadocMethod Missing a Javadoc comment. 178
 Error
whitespace ParenPad '(' is not followed by whitespace. 178
 Error
coding HiddenField '_bAutoExtract' hides a field. 178
 Error
naming ParameterName Name '_bAutoExtract' must match pattern '^[a-z][a-zA-Z0-9]*$'. 178
 Error
whitespace ParenPad ')' is not preceded with whitespace. 178
 Error
blocks LeftCurly '{' at column 52 should be on a new line. 178
 Error
javadoc JavadocMethod Missing a Javadoc comment. 182
 Error
blocks LeftCurly '{' at column 45 should be on a new line. 182
 Error
javadoc JavadocMethod Missing a Javadoc comment. 186
 Error
whitespace ParenPad '(' is not followed by whitespace. 186
 Error
whitespace ParenPad ')' is not preceded with whitespace. 186
 Error
blocks LeftCurly '{' at column 75 should be on a new line. 186
 Error
javadoc JavadocMethod Missing a Javadoc comment. 190
 Error
blocks LeftCurly '{' at column 33 should be on a new line. 190
 Error
javadoc JavadocMethod Missing a Javadoc comment. 194
 Error
whitespace ParenPad '(' is not followed by whitespace. 194
 Error
coding HiddenField '_strPassword' hides a field. 194
 Error
naming ParameterName Name '_strPassword' must match pattern '^[a-z][a-zA-Z0-9]*$'. 194
 Error
whitespace ParenPad ')' is not preceded with whitespace. 194
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 194
 Error
javadoc JavadocMethod Missing a Javadoc comment. 198
 Error
blocks LeftCurly '{' at column 43 should be on a new line. 198
 Error
javadoc JavadocMethod Missing a Javadoc comment. 202
 Error
whitespace ParenPad '(' is not followed by whitespace. 202
 Error
whitespace ParenPad ')' is not preceded with whitespace. 202
 Error
blocks LeftCurly '{' at column 69 should be on a new line. 202

fr/paris/lutece/plugins/identityexport/business/ProfileHome.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/identityexport/daemon/ExtractAutoDaemon.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
imports UnusedImports Unused import - java.util.Date. 5
 Error
javadoc JavadocType Missing a Javadoc comment. 16
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 16
 Error
blocks LeftCurly '{' at column 23 should be on a new line. 19
 Error
whitespace ParenPad '(' is not followed by whitespace. 21
 Error
whitespace ParenPad ')' is not preceded with whitespace. 21
 Error
blocks LeftCurly '{' at column 55 should be on a new line. 21
 Error
whitespace ParenPad '(' is not followed by whitespace. 23
 Error
whitespace ParenPad ')' is not preceded with whitespace. 23
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 23
 Error
whitespace ParenPad '(' is not followed by whitespace. 25
 Error
whitespace ParenPad ')' is not preceded with whitespace. 25
 Error
blocks LeftCurly '{' at column 46 should be on a new line. 25
 Error
whitespace ParenPad '(' is not followed by whitespace. 26
 Error
whitespace ParenPad '(' is not followed by whitespace. 26
 Error
whitespace ParenPad ')' is not preceded with whitespace. 26
 Error
whitespace ParenPad '(' is not followed by whitespace. 26
 Error
whitespace ParenPad ')' is not preceded with whitespace. 26
 Error
whitespace ParenPad ')' is not preceded with whitespace. 26
 Error
blocks LeftCurly '{' at column 109 should be on a new line. 26
 Error
whitespace ParenPad '(' is not followed by whitespace. 31
 Error
whitespace ParenPad ')' is not preceded with whitespace. 31
 Error
whitespace ParenPad '(' is not followed by whitespace. 32
 Error
whitespace ParenPad ')' is not preceded with whitespace. 32
 Error
blocks LeftCurly '{' at column 41 should be on a new line. 32
 Error
whitespace ParenPad '(' is not followed by whitespace. 35
 Error
whitespace ParenPad ')' is not preceded with whitespace. 35
 Error
whitespace ParenPad '(' is not followed by whitespace. 37
 Error
whitespace ParenPad ')' is not preceded with whitespace. 37

fr/paris/lutece/plugins/identityexport/daemon/ExtractDaemon.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 11
 Error
blocks LeftCurly '{' at column 43 should be on a new line. 11
 Error
blocks LeftCurly '{' at column 20 should be on a new line. 14
 Error
whitespace ParenPad ')' is not preceded with whitespace. 21
 Error
whitespace ParenPad ')' is not preceded with whitespace. 25
 Error
whitespace ParenPad ')' is not preceded with whitespace. 28
 Error
whitespace ParenPad ')' is not preceded with whitespace. 33
 Error
whitespace ParenPad '(' is not followed by whitespace. 35
 Error
whitespace ParenPad ')' is not preceded with whitespace. 35
 Error
whitespace ParenPad ')' is not preceded with whitespace. 37
 Error
whitespace ParenPad ')' is not preceded with whitespace. 38

fr/paris/lutece/plugins/identityexport/export/Constants.java

Severity Category Rule Message Line
 Error
header Header Missing a header - not enough lines in file. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 3
 Error
design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 3
 Error
blocks LeftCurly '{' at column 24 should be on a new line. 3

fr/paris/lutece/plugins/identityexport/export/ElasticService.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 17
 Error
design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 17
 Error
blocks LeftCurly '{' at column 29 should be on a new line. 17
 Error
whitespace ParenPad '(' is not followed by whitespace. 19
 Error
whitespace ParenPad ')' is not preceded with whitespace. 19
 Error
whitespace ParenPad ')' is not preceded with whitespace. 20
 Error
javadoc JavadocMethod Expected @return tag. 32
 Error
javadoc JavadocMethod Expected @param tag for 'lstFields'. 32
 Error
javadoc JavadocMethod Expected @param tag for 'lstCertifLevel'. 32
 Error
javadoc JavadocMethod Expected @param tag for 'isMonParis'. 32
 Error
javadoc JavadocMethod Expected @param tag for 'strPitId'. 32
 Error
whitespace ParenPad '(' is not followed by whitespace. 35
 Error
whitespace ParenPad ')' is not preceded with whitespace. 35
 Error
whitespace ParenPad '(' is not followed by whitespace. 38
 Error
whitespace ParenPad ')' is not preceded with whitespace. 38
 Error
whitespace ParenPad '(' is not followed by whitespace. 41
 Error
whitespace ParenPad ')' is not preceded with whitespace. 41
 Error
whitespace ParenPad '(' is not followed by whitespace. 44
 Error
whitespace ParenPad ')' is not preceded with whitespace. 44
 Error
whitespace ParenPad '(' is not followed by whitespace. 75
 Error
whitespace ParenPad ')' is not preceded with whitespace. 75
 Error
whitespace ParenPad '(' is not followed by whitespace. 76
 Error
whitespace ParenPad ')' is not preceded with whitespace. 76
 Error
whitespace ParenPad '(' is not followed by whitespace. 79
 Error
whitespace ParenPad ')' is not preceded with whitespace. 79
 Error
whitespace ParenPad '(' is not followed by whitespace. 81
 Error
whitespace ParenPad ')' is not preceded with whitespace. 81
 Error
javadoc JavadocMethod Expected @return tag. 98
 Error
javadoc JavadocMethod Expected @param tag for 'strIdSort'. 98
 Error
javadoc JavadocMethod Expected @param tag for 'lstFields'. 98
 Error
javadoc JavadocMethod Expected @param tag for 'lstCertifLevel'. 98
 Error
javadoc JavadocMethod Expected @param tag for 'isMonParis'. 98
 Error
javadoc JavadocMethod Expected @param tag for 'strPitId'. 98
 Error
whitespace ParenPad '(' is not followed by whitespace. 100
 Error
whitespace ParenPad ')' is not preceded with whitespace. 100
 Error
whitespace ParenPad '(' is not followed by whitespace. 103
 Error
whitespace ParenPad ')' is not preceded with whitespace. 103
 Error
whitespace ParenPad '(' is not followed by whitespace. 106
 Error
whitespace ParenPad ')' is not preceded with whitespace. 106
 Error
whitespace ParenPad '(' is not followed by whitespace. 109
 Error
whitespace ParenPad ')' is not preceded with whitespace. 109
 Error
blocks LeftCurly '{' at column 7 should be on a new line. 112
 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 preceded with whitespace. 143
 Error
blocks RightCurly '}' at column 3 should be alone on a line. 145
 Error
whitespace ParenPad '(' is not followed by whitespace. 145
 Error
whitespace ParenPad ')' is not preceded with whitespace. 145
 Error
blocks LeftCurly '{' at column 35 should be on a new line. 145
 Error
whitespace ParenPad '(' is not followed by whitespace. 146
 Error
whitespace ParenPad ')' is not preceded with whitespace. 146
 Error
whitespace ParenPad '(' is not followed by whitespace. 167
 Error
whitespace ParenPad ')' is not preceded with whitespace. 167
 Error
whitespace ParenPad '(' is not followed by whitespace. 182
 Error
whitespace ParenPad ')' is not preceded with whitespace. 182
 Error
whitespace ParenPad '(' is not followed by whitespace. 186
 Error
whitespace ParenPad ')' is not preceded with whitespace. 186
 Error
whitespace ParenPad '(' is not followed by whitespace. 187
 Error
whitespace ParenPad '(' is not followed by whitespace. 187
 Error
whitespace ParenPad ')' is not preceded with whitespace. 187
 Error
whitespace ParenPad ')' is not preceded with whitespace. 187
 Error
whitespace ParenPad '(' is not followed by whitespace. 190
 Error
whitespace ParenPad ')' is not preceded with whitespace. 190
 Error
whitespace ParenPad '(' is not followed by whitespace. 193
 Error
whitespace ParenPad ')' is not preceded with whitespace. 193
 Error
whitespace ParenPad ')' is not preceded with whitespace. 195
 Error
whitespace ParenPad ')' is not preceded with whitespace. 199
 Error
whitespace ParenPad '(' is not followed by whitespace. 201
 Error
whitespace ParenPad ')' is not preceded with whitespace. 201
 Error
whitespace ParenPad ')' is not preceded with whitespace. 203

fr/paris/lutece/plugins/identityexport/export/ProfileGenerator.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
imports UnusedImports Unused import - fr.paris.lutece.portal.service.util.AppLogService. 11
 Error
javadoc JavadocType Missing a Javadoc comment. 17
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 17
 Error
whitespace ParenPad '(' is not followed by whitespace. 20
 Error
whitespace ParenPad ')' is not preceded with whitespace. 20
 Error
javadoc JavadocMethod Expected @param tag for 'profile'. 28
 Error
javadoc JavadocMethod Expected @param tag for 'strContent'. 48
 Error
javadoc JavadocMethod Expected @return tag. 66
 Error
whitespace ParenPad '(' is not followed by whitespace. 71
 Error
whitespace ParenPad ')' is not preceded with whitespace. 71
 Error
whitespace ParenPad '(' is not followed by whitespace. 72
 Error
whitespace ParenPad '(' is not followed by whitespace. 73
 Error
whitespace ParenPad ')' is not preceded with whitespace. 73
 Error
whitespace ParenPad ')' is not preceded with whitespace. 78
 Error
javadoc JavadocMethod Expected @param tag for 'resource'. 98
 Error
javadoc JavadocMethod Expected @return tag. 163
 Error
javadoc JavadocMethod Expected @return tag. 171

fr/paris/lutece/plugins/identityexport/rbac/AccessExportProfileResource.java

Severity Category Rule Message Line
 Error
header Header Missing a header - not enough lines in file. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 5
 Error
blocks LeftCurly '{' at column 66 should be on a new line. 5

fr/paris/lutece/plugins/identityexport/rbac/AccessExportProfileResourceIdService.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 14
 Error
blocks LeftCurly '{' at column 77 should be on a new line. 14
 Error
blocks LeftCurly '{' at column 28 should be on a new line. 23
 Error
whitespace ParenPad '(' is not followed by whitespace. 45
 Error
whitespace ParenPad ')' is not preceded with whitespace. 45
 Error
whitespace ParenPad '(' is not followed by whitespace. 49
 Error
whitespace ParenPad ')' is not preceded with whitespace. 49
 Error
blocks LeftCurly '{' at column 65 should be on a new line. 49
 Error
whitespace ParenPad '(' is not followed by whitespace. 54
 Error
whitespace ParenPad ')' is not preceded with whitespace. 54
 Error
blocks LeftCurly '{' at column 69 should be on a new line. 54
 Error
whitespace ParenPad '(' is not followed by whitespace. 55
 Error
whitespace ParenPad '(' is not followed by whitespace. 55
 Error
whitespace ParenPad ')' is not preceded with whitespace. 55
 Error
whitespace ParenPad ')' is not preceded with whitespace. 55
 Error
whitespace ParenPad '(' is not followed by whitespace. 55
 Error
whitespace ParenPad ')' is not preceded with whitespace. 55

fr/paris/lutece/plugins/identityexport/rs/ExportRest.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 17
 Error
whitespace ParenPad '(' is not followed by whitespace. 17
 Error
blocks LeftCurly '{' at column 49 should be on a new line. 18
 Error
javadoc JavadocMethod Missing a Javadoc comment. 20
 Error
blocks LeftCurly '{' at column 25 should be on a new line. 20
 Error
javadoc JavadocMethod Missing a Javadoc comment. 24
 Error
whitespace ParenPad '(' is not followed by whitespace. 24
 Error
whitespace ParenPad ')' is not preceded with whitespace. 24
 Error
blocks LeftCurly '{' at column 43 should be on a new line. 33
 Error
whitespace ParenPad '(' is not followed by whitespace. 34
 Error
whitespace ParenPad ')' is not preceded with whitespace. 34
 Error
whitespace ParenPad '(' is not followed by whitespace. 35
 Error
whitespace ParenPad ')' is not preceded with whitespace. 35

fr/paris/lutece/plugins/identityexport/rs/IRestService.java

Severity Category Rule Message Line
 Error
header Header Missing a header - not enough lines in file. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 8
 Error
blocks LeftCurly '{' at column 31 should be on a new line. 8
 Error
javadoc JavadocMethod Missing a Javadoc comment. 9
 Error
whitespace ParenPad '(' is not followed by whitespace. 9
 Error
whitespace ParenPad ')' is not preceded with whitespace. 9
 Error
whitespace ParenPad '(' is not followed by whitespace. 11
 Error
whitespace ParenPad ')' is not preceded with whitespace. 11

fr/paris/lutece/plugins/identityexport/rs/error/UncaughtIdentityStoreExceptionMapper.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
whitespace ParenPad '(' is not followed by whitespace. 20
 Error
whitespace ParenPad ')' is not preceded with whitespace. 20
 Error
whitespace ParenPad '(' is not followed by whitespace. 29
 Error
whitespace ParenPad '(' is not followed by whitespace. 29
 Error
whitespace ParenPad ')' is not preceded with whitespace. 29
 Error
whitespace ParenPad '(' is not followed by whitespace. 30
 Error
whitespace ParenPad ')' is not preceded with whitespace. 30
 Error
whitespace ParenPad ')' is not preceded with whitespace. 30

fr/paris/lutece/plugins/identityexport/rs/error/UncaughtRequestFormatExceptionMapper.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
whitespace ParenPad '(' is not followed by whitespace. 25
 Error
whitespace ParenPad ')' is not preceded with whitespace. 25
 Error
whitespace ParenPad '(' is not followed by whitespace. 42
 Error
whitespace ParenPad '(' is not followed by whitespace. 42
 Error
whitespace ParenPad ')' is not preceded with whitespace. 42
 Error
whitespace ParenPad '(' is not followed by whitespace. 43
 Error
whitespace ParenPad ')' is not preceded with whitespace. 43
 Error
whitespace ParenPad ')' is not preceded with whitespace. 43

fr/paris/lutece/plugins/identityexport/rs/error/UncaughtResourceConsistencyExceptionMapper.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 14
 Error
blocks LeftCurly '{' at column 139 should be on a new line. 15
 Error
whitespace ParenPad '(' is not followed by whitespace. 20
 Error
whitespace ParenPad ')' is not preceded with whitespace. 20
 Error
blocks LeftCurly '{' at column 79 should be on a new line. 20
 Error
whitespace ParenPad '(' is not followed by whitespace. 29
 Error
whitespace ParenPad ')' is not preceded with whitespace. 29
 Error
blocks LeftCurly '{' at column 73 should be on a new line. 29
 Error
whitespace ParenPad '(' is not followed by whitespace. 35
 Error
whitespace ParenPad '(' is not followed by whitespace. 35
 Error
whitespace ParenPad ')' is not preceded with whitespace. 35
 Error
whitespace ParenPad '(' is not followed by whitespace. 36
 Error
whitespace ParenPad ')' is not preceded with whitespace. 36
 Error
whitespace ParenPad ')' is not preceded with whitespace. 36
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 41

fr/paris/lutece/plugins/identityexport/rs/error/UncaughtResourceNotFoundExceptionMapper.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
whitespace ParenPad '(' is not followed by whitespace. 24
 Error
whitespace ParenPad ')' is not preceded with whitespace. 24
 Error
whitespace ParenPad '(' is not followed by whitespace. 41
 Error
whitespace ParenPad '(' is not followed by whitespace. 41
 Error
whitespace ParenPad ')' is not preceded with whitespace. 41
 Error
whitespace ParenPad '(' is not followed by whitespace. 42
 Error
whitespace ParenPad ')' is not preceded with whitespace. 42
 Error
whitespace ParenPad ')' is not preceded with whitespace. 42

fr/paris/lutece/plugins/identityexport/rs/request/ScheduleExportRequest.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocType Missing a Javadoc comment. 22
 Error
blocks LeftCurly '{' at column 73 should be on a new line. 22
 Error
naming MemberName Name 'request' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 24
 Error
naming MemberName Name 'exportModel' must match pattern '^_[a-z](_?[a-zA-Z0-9])*$'. 25
 Error
javadoc JavadocMethod Missing a Javadoc comment. 27
 Error
whitespace ParenPad '(' is not followed by whitespace. 27
 Error
coding HiddenField 'request' hides a field. 27
 Error
whitespace ParenPad ')' is not preceded with whitespace. 27
 Error
blocks LeftCurly '{' at column 43 should be on a new line. 28
 Error
whitespace ParenPad '(' is not followed by whitespace. 29
 Error
whitespace ParenPad ')' is not preceded with whitespace. 29
 Error
blocks LeftCurly '{' at column 70 should be on a new line. 34
 Error
whitespace ParenPad '(' is not followed by whitespace. 35
 Error
whitespace ParenPad ')' is not preceded with whitespace. 35
 Error
blocks LeftCurly '{' at column 68 should be on a new line. 35
 Error
whitespace ParenPad '(' is not followed by whitespace. 36
 Error
whitespace ParenPad ')' is not preceded with whitespace. 36
 Error
whitespace ParenPad '(' is not followed by whitespace. 37
 Error
whitespace ParenPad ')' is not preceded with whitespace. 37
 Error
whitespace ParenPad ')' is not preceded with whitespace. 37
 Error
blocks LeftCurly '{' at column 74 should be on a new line. 42
 Error
whitespace ParenPad '(' is not followed by whitespace. 43
 Error
whitespace ParenPad ')' is not preceded with whitespace. 43
 Error
blocks LeftCurly '{' at column 86 should be on a new line. 47
 Error
blocks LeftCurly '{' at column 87 should be on a new line. 52
 Error
whitespace ParenPad '(' is not followed by whitespace. 53
 Error
whitespace ParenPad '(' is not followed by whitespace. 53
 Error
whitespace ParenPad ')' is not preceded with whitespace. 53
 Error
whitespace ParenPad ')' is not preceded with whitespace. 53
 Error
blocks LeftCurly '{' at column 90 should be on a new line. 53
 Error
whitespace ParenPad '(' is not followed by whitespace. 54
 Error
whitespace ParenPad ')' is not preceded with whitespace. 54
 Error
blocks LeftCurly '{' at column 84 should be on a new line. 59
 Error
blocks LeftCurly '{' at column 87 should be on a new line. 64
 Error
blocks LeftCurly '{' at column 93 should be on a new line. 69
 Error
whitespace ParenPad '(' is not followed by whitespace. 72
 Error
whitespace ParenPad ')' is not preceded with whitespace. 72
 Error
whitespace ParenPad '(' is not followed by whitespace. 73
 Error
whitespace ParenPad ')' is not preceded with whitespace. 73
 Error
whitespace ParenPad '(' is not followed by whitespace. 75
 Error
whitespace ParenPad ')' is not preceded with whitespace. 75
 Error
whitespace ParenPad '(' is not followed by whitespace. 78
 Error
whitespace ParenPad ')' is not preceded with whitespace. 78
 Error
whitespace ParenPad '(' is not followed by whitespace. 79
 Error
whitespace ParenPad '(' is not followed by whitespace. 79
 Error
whitespace ParenPad ')' is not preceded with whitespace. 79
 Error
whitespace ParenPad ')' is not preceded with whitespace. 79

fr/paris/lutece/plugins/identityexport/service/file/implementation/LocalFileSystemDirectoryFileService.java

Severity Category Rule Message Line
 Error
header Header Line does not match expected header line of '/*'. 1
 Error
javadoc JavadocMethod Expected @param tag for 'fileDownloadUrlService'. 56
 Error
javadoc JavadocMethod Expected @param tag for 'fileRBACService'. 56
 Error
javadoc JavadocMethod Expected @param tag for 'fileRBACService'. 78
 Error
javadoc JavadocMethod Expected @param tag for 'strKey'. 156
 Error
javadoc JavadocMethod Expected @param tag for 'withPhysicalFile'. 156
 Error
whitespace ParenPad '(' is not followed by whitespace. 158
 Error
whitespace ParenPad ')' is not preceded with whitespace. 158
 Error
whitespace ParenPad '(' is not followed by whitespace. 158
 Error
whitespace ParenPad ')' is not preceded with whitespace. 158
 Error
whitespace ParenPad '(' is not followed by whitespace. 158
 Error
whitespace ParenPad ')' is not preceded with whitespace. 158
 Error
blocks LeftCurly '{' at column 12 should be on a new line. 178
 Error
blocks RightCurly '}' at column 8 should be alone on a line. 180
 Error
whitespace ParenPad '(' is not followed by whitespace. 180
 Error
whitespace ParenPad ')' is not preceded with whitespace. 180
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 180
 Error
whitespace ParenPad ')' is not preceded with whitespace. 181
 Error
whitespace ParenPad '(' is not followed by whitespace. 193
 Error
whitespace ParenPad ')' is not preceded with whitespace. 193
 Error
whitespace ParenPad '(' is not followed by whitespace. 195
 Error
whitespace ParenPad ')' is not preceded with whitespace. 195
 Error
blocks LeftCurly '{' at column 12 should be on a new line. 214
 Error
blocks RightCurly '}' at column 8 should be alone on a line. 216
 Error
whitespace ParenPad '(' is not followed by whitespace. 216
 Error
whitespace ParenPad ')' is not preceded with whitespace. 216
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 216
 Error
blocks LeftCurly '{' at column 12 should be on a new line. 250
 Error
blocks RightCurly '}' at column 8 should be alone on a line. 252
 Error
whitespace ParenPad '(' is not followed by whitespace. 252
 Error
whitespace ParenPad ')' is not preceded with whitespace. 252
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 252
 Error
blocks LeftCurly '{' at column 12 should be on a new line. 269
 Error
blocks RightCurly '}' at column 8 should be alone on a line. 271
 Error
whitespace ParenPad '(' is not followed by whitespace. 271
 Error
whitespace ParenPad ')' is not preceded with whitespace. 271
 Error
blocks LeftCurly '{' at column 32 should be on a new line. 271
 Error
javadoc JavadocMethod Missing a Javadoc comment. 278
 Error
javadoc JavadocMethod Missing a Javadoc comment. 283

fr/paris/lutece/plugins/identityexport/web/AbstractManageExtractionJspBean.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 Type Javadoc comment is missing @param <S> tag. 50
 Error
javadoc JavadocType Type Javadoc comment is missing @param <T> tag. 50
 Error
javadoc JavadocMethod Expected @param tag for '<T>'. 77
 Error
javadoc JavadocMethod Unused @param tag for '<S>'. 103
 Error
javadoc JavadocMethod Unused @param tag for '<T>'. 104
 Error
javadoc JavadocMethod Expected @param tag for 'listIds'. 109

fr/paris/lutece/plugins/identityexport/web/ExtractionJspBean.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 - org.apache.commons.lang3.StringUtils. 75
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 139
 Error
whitespace ParenPad '(' is not followed by whitespace. 142
 Error
whitespace ParenPad '(' is not followed by whitespace. 142
 Error
whitespace ParenPad ')' is not preceded with 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. 143
 Error
whitespace ParenPad '(' is not followed by whitespace. 143
 Error
whitespace ParenPad ')' is not preceded with whitespace. 143
 Error
whitespace ParenPad ')' is not preceded with whitespace. 143
 Error
whitespace ParenPad ')' is not preceded with whitespace. 143
 Error
blocks LeftCurly '{' at column 172 should be on a new line. 143
 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. 147
 Error
whitespace ParenPad '(' is not followed by whitespace. 149
 Error
whitespace ParenPad ')' is not preceded with whitespace. 149
 Error
whitespace ParenPad '(' is not followed by whitespace. 155
 Error
whitespace ParenPad '(' is not followed by whitespace. 155
 Error
whitespace ParenPad ')' is not preceded with whitespace. 155
 Error
whitespace ParenPad '(' is not followed by whitespace. 155
 Error
whitespace ParenPad ')' is not preceded with whitespace. 155
 Error
whitespace ParenPad '(' is not followed by whitespace. 156
 Error
whitespace ParenPad ')' is not preceded with whitespace. 156
 Error
whitespace ParenPad '(' is not followed by whitespace. 173
 Error
whitespace ParenPad ')' is not preceded with whitespace. 173
 Error
whitespace ParenPad ')' is not preceded with whitespace. 173
 Error
whitespace ParenPad ')' is not preceded with whitespace. 173
 Error
whitespace ParenPad '(' is not followed by whitespace. 174
 Error
whitespace ParenPad ')' is not preceded with whitespace. 174
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 192
 Error
whitespace ParenPad '(' is not followed by whitespace. 194
 Error
whitespace ParenPad '(' is not followed by whitespace. 194
 Error
whitespace ParenPad ')' is not preceded with whitespace. 194
 Error
whitespace ParenPad ')' is not preceded with whitespace. 194
 Error
whitespace ParenPad '(' is not followed by whitespace. 195
 Error
whitespace ParenPad '(' is not followed by whitespace. 195
 Error
whitespace ParenPad '(' is not followed by whitespace. 195
 Error
whitespace ParenPad ')' is not preceded with whitespace. 195
 Error
whitespace ParenPad ')' is not preceded with whitespace. 195
 Error
whitespace ParenPad ')' is not preceded with whitespace. 195
 Error
blocks LeftCurly '{' at column 173 should be on a new line. 195
 Error
whitespace ParenPad '(' is not followed by whitespace. 196
 Error
whitespace ParenPad ')' is not preceded with whitespace. 196
 Error
blocks LeftCurly '{' at column 10 should be on a new line. 205
 Error
whitespace ParenPad ')' is not preceded with whitespace. 210
 Error
whitespace ParenPad '(' is not followed by whitespace. 213
 Error
whitespace ParenPad ')' is not preceded with whitespace. 213
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'System\.out\.println'. 215
 Error
whitespace ParenPad '(' is not followed by whitespace. 215
 Error
whitespace ParenPad ')' is not preceded with whitespace. 216
 Error
whitespace ParenPad ')' is not preceded with whitespace. 220
 Error
whitespace ParenPad '(' is not followed by whitespace. 222
 Error
whitespace ParenPad ')' is not preceded with whitespace. 222
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'System\.out\.println'. 224
 Error
whitespace ParenPad '(' is not followed by whitespace. 224
 Error
whitespace ParenPad ')' is not preceded with whitespace. 224
 Error
blocks RightCurly '}' at column 3 should be alone on a line. 227
 Error
whitespace ParenPad '(' is not followed by whitespace. 227
 Error
whitespace ParenPad ')' is not preceded with whitespace. 227
 Error
blocks LeftCurly '{' at column 38 should be on a new line. 227
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'printStackTrace'. 229
 Error
whitespace ParenPad ')' is not preceded with whitespace. 234
 Error
whitespace ParenPad ')' is not preceded with whitespace. 235
 Error
whitespace ParenPad ')' is not preceded with whitespace. 236
 Error
whitespace ParenPad '(' is not followed by whitespace. 237
 Error
whitespace ParenPad ')' is not preceded with whitespace. 237
 Error
whitespace ParenPad '(' is not followed by whitespace. 237
 Error
whitespace ParenPad ')' is not preceded with whitespace. 237
 Error
whitespace ParenPad ')' is not preceded with whitespace. 237
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 251
 Error
whitespace ParenPad '(' is not followed by whitespace. 265
 Error
whitespace ParenPad '(' is not followed by whitespace. 265
 Error
whitespace ParenPad '(' is not followed by whitespace. 265
 Error
whitespace ParenPad ')' is not preceded with whitespace. 265
 Error
whitespace ParenPad ')' is not preceded with whitespace. 265
 Error
whitespace ParenPad ')' is not preceded with whitespace. 265
 Error
blocks LeftCurly '{' at column 190 should be on a new line. 265
 Error
whitespace ParenPad '(' is not followed by whitespace. 266
 Error
whitespace ParenPad ')' is not preceded with whitespace. 266
 Error
whitespace ParenPad '(' is not followed by whitespace. 273
 Error
whitespace ParenPad ')' is not preceded with whitespace. 273
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 284
 Error
whitespace ParenPad '(' is not followed by whitespace. 288
 Error
whitespace ParenPad '(' is not followed by whitespace. 288
 Error
whitespace ParenPad '(' is not followed by whitespace. 288
 Error
whitespace ParenPad ')' is not preceded with whitespace. 288
 Error
whitespace ParenPad ')' is not preceded with whitespace. 288
 Error
whitespace ParenPad ')' is not preceded with whitespace. 288
 Error
blocks LeftCurly '{' at column 174 should be on a new line. 288
 Error
whitespace ParenPad '(' is not followed by whitespace. 289
 Error
whitespace ParenPad ')' is not preceded with whitespace. 289
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 308
 Error
whitespace ParenPad '(' is not followed by whitespace. 312
 Error
whitespace ParenPad '(' is not followed by whitespace. 312
 Error
whitespace ParenPad '(' is not followed by whitespace. 312
 Error
whitespace ParenPad ')' is not preceded with whitespace. 312
 Error
whitespace ParenPad ')' is not preceded with whitespace. 312
 Error
whitespace ParenPad ')' is not preceded with whitespace. 312
 Error
blocks LeftCurly '{' at column 174 should be on a new line. 312
 Error
whitespace ParenPad '(' is not followed by whitespace. 313
 Error
whitespace ParenPad ')' is not preceded with whitespace. 313
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 330
 Error
whitespace ParenPad '(' is not followed by whitespace. 337
 Error
whitespace ParenPad '(' is not followed by whitespace. 339
 Error
whitespace ParenPad '(' is not followed by whitespace. 339
 Error
whitespace ParenPad '(' is not followed by whitespace. 339
 Error
whitespace ParenPad ')' is not preceded with whitespace. 339
 Error
whitespace ParenPad ')' is not preceded with whitespace. 339
 Error
whitespace ParenPad ')' is not preceded with whitespace. 339
 Error
blocks LeftCurly '{' at column 190 should be on a new line. 339
 Error
whitespace ParenPad '(' is not followed by whitespace. 340
 Error
whitespace ParenPad ')' is not preceded with whitespace. 340
 Error
blocks LeftCurly '{' at column 10 should be on a new line. 346
 Error
whitespace ParenPad ')' is not preceded with whitespace. 351
 Error
whitespace ParenPad '(' is not followed by whitespace. 354
 Error
whitespace ParenPad ')' is not preceded with whitespace. 354
 Error
whitespace ParenPad ')' is not preceded with whitespace. 356
 Error
whitespace ParenPad ')' is not preceded with whitespace. 360
 Error
whitespace ParenPad '(' is not followed by whitespace. 362
 Error
whitespace ParenPad ')' is not preceded with whitespace. 362
 Error
blocks RightCurly '}' at column 3 should be alone on a line. 366
 Error
whitespace ParenPad '(' is not followed by whitespace. 366
 Error
whitespace ParenPad ')' is not preceded with whitespace. 366
 Error
blocks LeftCurly '{' at column 38 should be on a new line. 366
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'printStackTrace'. 368
 Error
whitespace ParenPad ')' is not preceded with whitespace. 373
 Error
whitespace ParenPad ')' is not preceded with whitespace. 374
 Error
whitespace ParenPad '(' is not followed by whitespace. 375
 Error
whitespace ParenPad ')' is not preceded with whitespace. 375
 Error
whitespace ParenPad '(' is not followed by whitespace. 375
 Error
whitespace ParenPad ')' is not preceded with whitespace. 375
 Error
whitespace ParenPad ')' is not preceded with whitespace. 375
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 390
 Error
whitespace ParenPad '(' is not followed by whitespace. 405
 Error
whitespace ParenPad '(' is not followed by whitespace. 405
 Error
whitespace ParenPad '(' is not followed by whitespace. 405
 Error
whitespace ParenPad ')' is not preceded with whitespace. 405
 Error
whitespace ParenPad ')' is not preceded with whitespace. 405
 Error
whitespace ParenPad ')' is not preceded with whitespace. 405
 Error
blocks LeftCurly '{' at column 190 should be on a new line. 405
 Error
whitespace ParenPad '(' is not followed by whitespace. 406
 Error
whitespace ParenPad ')' is not preceded with whitespace. 406

fr/paris/lutece/plugins/identityexport/web/ProfilJspBean.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.Collections. 77
 Error
imports UnusedImports Unused import - java.util.Iterator. 80
 Error
whitespace ParenPad ')' is not preceded with whitespace. 156
 Error
whitespace ParenPad '(' is not followed by whitespace. 159
 Error
whitespace ParenPad '(' is not followed by whitespace. 159
 Error
whitespace ParenPad '(' is not followed by whitespace. 159
 Error
whitespace ParenPad ')' is not preceded with whitespace. 159
 Error
whitespace ParenPad ')' is not preceded with whitespace. 159
 Error
whitespace ParenPad ')' is not preceded with whitespace. 159
 Error
whitespace ParenPad '(' is not followed by whitespace. 160
 Error
whitespace ParenPad ')' is not preceded with whitespace. 160
 Error
whitespace ParenPad '(' is not followed by whitespace. 163
 Error
whitespace ParenPad '(' is not followed by whitespace. 163
 Error
whitespace ParenPad ')' is not preceded with whitespace. 163
 Error
whitespace ParenPad ')' is not preceded with whitespace. 163
 Error
whitespace ParenPad '(' is not followed by whitespace. 165
 Error
whitespace ParenPad ')' is not preceded with whitespace. 165
 Error
whitespace ParenPad '(' is not followed by whitespace. 168
 Error
whitespace ParenPad '(' is not followed by whitespace. 168
 Error
whitespace ParenPad ')' is not preceded with whitespace. 168
 Error
whitespace ParenPad ')' is not preceded with whitespace. 168
 Error
whitespace ParenPad '(' is not followed by whitespace. 169
 Error
whitespace ParenPad ')' is not preceded with whitespace. 169
 Error
whitespace ParenPad '(' is not followed by whitespace. 184
 Error
whitespace ParenPad ')' is not preceded with whitespace. 184
 Error
whitespace ParenPad ')' is not preceded with whitespace. 184
 Error
whitespace ParenPad '(' is not followed by whitespace. 203
 Error
whitespace ParenPad ')' is not preceded with whitespace. 203
 Error
whitespace ParenPad ')' is not preceded with whitespace. 203
 Error
whitespace ParenPad ')' is not preceded with whitespace. 203
 Error
whitespace ParenPad '(' is not followed by whitespace. 204
 Error
whitespace ParenPad ')' is not preceded with whitespace. 204
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 222
 Error
whitespace ParenPad '(' is not followed by whitespace. 224
 Error
whitespace ParenPad '(' is not followed by whitespace. 224
 Error
whitespace ParenPad ')' is not preceded with whitespace. 224
 Error
whitespace ParenPad ')' is not preceded with whitespace. 224
 Error
blocks LeftCurly '{' at column 176 should be on a new line. 224
 Error
whitespace ParenPad '(' is not followed by whitespace. 225
 Error
whitespace ParenPad ')' is not preceded with whitespace. 225
 Error
blocks LeftCurly '{' at column 10 should be on a new line. 231
 Error
whitespace ParenPad ')' is not preceded with whitespace. 237
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'System\.out\.println'. 241
 Error
whitespace ParenPad '(' is not followed by whitespace. 241
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'System\.out\.println'. 245
 Error
whitespace ParenPad '(' is not followed by whitespace. 245
 Error
blocks RightCurly '}' at column 3 should be alone on a line. 250
 Error
whitespace ParenPad '(' is not followed by whitespace. 250
 Error
whitespace ParenPad ')' is not preceded with whitespace. 250
 Error
blocks LeftCurly '{' at column 38 should be on a new line. 250
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'printStackTrace'. 252
 Error
whitespace ParenPad ')' is not preceded with whitespace. 257
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 271
 Error
whitespace ParenPad '(' is not followed by whitespace. 273
 Error
whitespace ParenPad '(' is not followed by whitespace. 273
 Error
whitespace ParenPad ')' is not preceded with whitespace. 273
 Error
whitespace ParenPad ')' is not preceded with whitespace. 273
 Error
blocks LeftCurly '{' at column 176 should be on a new line. 273
 Error
whitespace ParenPad '(' is not followed by whitespace. 274
 Error
whitespace ParenPad ')' is not preceded with whitespace. 274
 Error
whitespace ParenPad '(' is not followed by whitespace. 293
 Error
whitespace ParenPad ')' is not preceded with whitespace. 293
 Error
whitespace ParenPad '(' is not followed by whitespace. 294
 Error
whitespace ParenPad ')' is not preceded with whitespace. 294
 Error
whitespace ParenPad '(' is not followed by whitespace. 296
 Error
whitespace ParenPad ')' is not preceded with whitespace. 296
 Error
whitespace ParenPad '(' is not followed by whitespace. 298
 Error
whitespace ParenPad ')' is not preceded with whitespace. 298
 Error
whitespace ParenPad '(' is not followed by whitespace. 298
 Error
blocks LeftCurly '{' at column 92 should be on a new line. 298
 Error
whitespace ParenPad '(' is not followed by whitespace. 300
 Error
whitespace ParenPad '(' is not followed by whitespace. 300
 Error
whitespace ParenPad ')' is not preceded with whitespace. 300
 Error
whitespace ParenPad ')' is not preceded with whitespace. 300
 Error
whitespace ParenPad '(' is not followed by whitespace. 301
 Error
whitespace ParenPad '(' is not followed by whitespace. 301
 Error
whitespace ParenPad ')' is not preceded with whitespace. 301
 Error
whitespace ParenPad ')' is not preceded with whitespace. 301
 Error
whitespace ParenPad '(' is not followed by whitespace. 302
 Error
whitespace ParenPad ')' is not preceded with whitespace. 302
 Error
whitespace ParenPad '(' is not followed by whitespace. 303
 Error
blocks LeftCurly '{' at column 47 should be on a new line. 303
 Error
whitespace ParenPad '(' is not followed by whitespace. 305
 Error
whitespace ParenPad '(' is not followed by whitespace. 305
 Error
whitespace ParenPad '(' is not followed by whitespace. 305
 Error
whitespace ParenPad ')' is not preceded with whitespace. 305
 Error
whitespace ParenPad '(' is not followed by whitespace. 305
 Error
whitespace ParenPad ')' is not preceded with whitespace. 305
 Error
whitespace ParenPad '(' is not followed by whitespace. 305
 Error
whitespace ParenPad ')' is not preceded with whitespace. 305
 Error
whitespace ParenPad ')' is not preceded with whitespace. 305
 Error
whitespace ParenPad ')' is not preceded with whitespace. 305
 Error
blocks LeftCurly '{' at column 204 should be on a new line. 305
 Error
whitespace ParenPad '(' is not followed by whitespace. 307
 Error
whitespace ParenPad ')' is not preceded with whitespace. 307
 Error
whitespace ParenPad '(' is not followed by whitespace. 308
 Error
whitespace ParenPad '(' is not followed by whitespace. 308
 Error
whitespace ParenPad ')' is not preceded with whitespace. 308
 Error
whitespace ParenPad ')' is not preceded with whitespace. 308
 Error
whitespace ParenPad '(' is not followed by whitespace. 309
 Error
whitespace ParenPad ')' is not preceded with whitespace. 309
 Error
whitespace ParenPad '(' is not followed by whitespace. 310
 Error
whitespace ParenPad ')' is not preceded with whitespace. 310
 Error
whitespace ParenPad ')' is not preceded with whitespace. 313
 Error
whitespace ParenPad ')' is not preceded with whitespace. 314
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 327
 Error
whitespace ParenPad '(' is not followed by whitespace. 330
 Error
whitespace ParenPad '(' is not followed by whitespace. 330
 Error
whitespace ParenPad '(' is not followed by whitespace. 330
 Error
whitespace ParenPad ')' is not preceded with whitespace. 330
 Error
whitespace ParenPad ')' is not preceded with whitespace. 330
 Error
whitespace ParenPad ')' is not preceded with whitespace. 330
 Error
blocks LeftCurly '{' at column 168 should be on a new line. 330
 Error
whitespace ParenPad '(' is not followed by whitespace. 331
 Error
whitespace ParenPad ')' is not preceded with whitespace. 331
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 349
 Error
blocks LeftCurly '{' at column 93 should be on a new line. 349
 Error
whitespace ParenPad '(' is not followed by whitespace. 351
 Error
whitespace ParenPad '(' is not followed by whitespace. 351
 Error
whitespace ParenPad '(' is not followed by whitespace. 351
 Error
whitespace ParenPad ')' is not preceded with whitespace. 351
 Error
whitespace ParenPad ')' is not preceded with whitespace. 351
 Error
whitespace ParenPad ')' is not preceded with whitespace. 351
 Error
blocks LeftCurly '{' at column 168 should be on a new line. 351
 Error
whitespace ParenPad '(' is not followed by whitespace. 352
 Error
whitespace ParenPad ')' is not preceded with whitespace. 352
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 370
 Error
blocks LeftCurly '{' at column 94 should be on a new line. 370
 Error
whitespace ParenPad '(' is not followed by whitespace. 375
 Error
whitespace ParenPad '(' is not followed by whitespace. 377
 Error
whitespace ParenPad '(' is not followed by whitespace. 377
 Error
whitespace ParenPad '(' is not followed by whitespace. 377
 Error
whitespace ParenPad ')' is not preceded with whitespace. 377
 Error
whitespace ParenPad ')' is not preceded with whitespace. 377
 Error
whitespace ParenPad ')' is not preceded with whitespace. 377
 Error
blocks LeftCurly '{' at column 168 should be on a new line. 377
 Error
whitespace ParenPad '(' is not followed by whitespace. 378
 Error
whitespace ParenPad ')' is not preceded with whitespace. 378
 Error
blocks LeftCurly '{' at column 10 should be on a new line. 383
 Error
whitespace ParenPad ')' is not preceded with whitespace. 389
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'System\.out\.println'. 393
 Error
whitespace ParenPad '(' is not followed by whitespace. 393
 Error
blocks RightCurly '}' at column 3 should be alone on a line. 397
 Error
whitespace ParenPad '(' is not followed by whitespace. 397
 Error
whitespace ParenPad ')' is not preceded with whitespace. 397
 Error
blocks LeftCurly '{' at column 38 should be on a new line. 397
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'printStackTrace'. 399
 Error
whitespace ParenPad ')' is not preceded with whitespace. 404
 Error
javadoc JavadocMethod Expected @throws tag for 'AccessDeniedException'. 418
 Error
whitespace ParenPad '(' is not followed by whitespace. 421
 Error
whitespace ParenPad '(' is not followed by whitespace. 421
 Error
whitespace ParenPad '(' is not followed by whitespace. 421
 Error
whitespace ParenPad ')' is not preceded with whitespace. 421
 Error
whitespace ParenPad ')' is not preceded with whitespace. 421
 Error
whitespace ParenPad ')' is not preceded with whitespace. 421
 Error
blocks LeftCurly '{' at column 180 should be on a new line. 421
 Error
whitespace ParenPad '(' is not followed by whitespace. 422
 Error
whitespace ParenPad ')' is not preceded with whitespace. 422
 Error
javadoc JavadocMethod Missing a Javadoc comment. 444
 Error
whitespace ParenPad ')' is not preceded with whitespace. 453
 Error
whitespace ParenPad '(' is not followed by whitespace. 458
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'System\.out\.println'. 485
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'System\.out\.println'. 486
 Error
regexp RegexpSinglelineJava Line matches the illegal pattern 'System\.out\.println'. 488
 Error
whitespace ParenPad ')' is not preceded with whitespace. 573