Fork me on GitHub

PMD Results

The following document contains the results of PMD 6.13.0.

Violations By Priority

Priority 3

fr/paris/lutece/plugins/mylutece/modules/database/authentication/BaseAuthentication.java

Rule Violation Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 34690
UnusedPrivateField Avoid unused private fields such as 'BEAN_USER_ATTRIBUTES_SERVICE'. 129
UnnecessaryConstructor Avoid unnecessary constructors - the compiler will generate these for you 135138
NPathComplexity The method 'processLogin(String, String, HttpServletRequest)' has an NPath complexity of 9504 206331
CyclomaticComplexity The method 'processLogin(String, String, HttpServletRequest)' has a cyclomatic complexity of 28. 206331
ExcessiveMethodLength Avoid really long methods. 206331
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 208
AvoidDeeplyNestedIfStmts Deeply nested if..then statements are hard to read 242250
UseDiamondOperator Explicit type arguments can be replaced by Diamond Operator 601
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 630
AvoidLiteralsInIfCondition Avoid using Literals in Conditional Statements 672
UseCollectionIsEmpty Substitute calls to size() == 0 (or size() != 0, size() > 0, size() < 1) with calls to isEmpty() 677

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseDAO.java

Rule Violation Line
TooManyMethods This class has too many methods, consider refactoring it. 56448

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseHome.java

Rule Violation Line
TooManyMethods This class has too many methods, consider refactoring it. 50259

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserDAO.java

Rule Violation Line
TooManyMethods This class has too many methods, consider refactoring it. 55729
DefaultPackage Use explicit scoping instead of the default package private level 9192
CommentDefaultAccessModifier To avoid mistakes add a comment at the beginning of the _passwordFactory field if you want a default access modifier 92

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserFactory.java

Rule Violation Line
IdenticalCatchBranches 'catch' branch identical to 'BeanDefinitionStoreException' branch 123129
IdenticalCatchBranches 'catch' branch identical to 'BeanDefinitionStoreException' branch 130136

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserFilter.java

Rule Violation Line
LinguisticNaming Linguistics Antipattern - The setter 'setDatabaseUserFilter' should not return any type except void linguistically 171190
ConfusingTernary Avoid if (x != y) ..; else ..; 176187

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserHome.java

Rule Violation Line
TooManyMethods This class has too many methods, consider refactoring it. 52474

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserRoleRemovalListener.java

Rule Violation Line
MissingOverride The method 'canBeRemoved(String)' is missing an @Override annotation. 6070
MissingOverride The method 'getRemovalRefusedMessage(String, Locale)' is missing an @Override annotation. 8185

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/Group.java

Rule Violation Line
ConfusingTernary Avoid if (x != y) ..; else ..; 65
MissingOverride The method 'getResourceTypeCode()' is missing an @Override annotation. 9497
MissingOverride The method 'getResourceId()' is missing an @Override annotation. 104107

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/GroupDAO.java

Rule Violation Line
AvoidSynchronizedAtMethodLevel Use block level rather than method level synchronization 7182

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/GroupFilter.java

Rule Violation Line
LinguisticNaming Linguistics Antipattern - The setter 'setGroupFilter' should not return any type except void linguistically 133150
ConfusingTernary Avoid if (x != y) ..; else ..; 138147

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/GroupRoleRemovalListener.java

Rule Violation Line
MissingOverride The method 'canBeRemoved(String)' is missing an @Override annotation. 6173
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 63
MissingOverride The method 'getRemovalRefusedMessage(String, Locale)' is missing an @Override annotation. 8488

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/IDatabaseDAO.java

Rule Violation Line
TooManyMethods This class has too many methods, consider refactoring it. 50209

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/IDatabaseUserDAO.java

Rule Violation Line
TooManyMethods This class has too many methods, consider refactoring it. 49359

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/key/DatabaseUserKeyDAO.java

Rule Violation Line
MissingOverride The method 'insert(DatabaseUserKey, Plugin)' is missing an @Override annotation. 5767
MissingOverride The method 'load(String, Plugin)' is missing an @Override annotation. 7290
MissingOverride The method 'delete(String, Plugin)' is missing an @Override annotation. 95102
MissingOverride The method 'deleteByIdUser(int, Plugin)' is missing an @Override annotation. 107114
MissingOverride The method 'selectKeyByLogin(String, Plugin)' is missing an @Override annotation. 119137

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/parameter/DatabaseUserParameterDAO.java

Rule Violation Line
MissingOverride The method 'load(String, Plugin)' is missing an @Override annotation. 5572
MissingOverride The method 'store(ReferenceItem, Plugin)' is missing an @Override annotation. 7787
MissingOverride The method 'selectAll(Plugin)' is missing an @Override annotation. 92110

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseAccountLifeTimeDaemon.java

Rule Violation Line
ImmutableField Private field '_parameterService' could be made final; it is only initialized in the declaration or constructor. 47
UnnecessaryConstructor Avoid unnecessary constructors - the compiler will generate these for you 5255

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseAccountLifeTimeService.java

Rule Violation Line
ImmutableField Private field '_plugin' could be made final; it is only initialized in the declaration or constructor. 77
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 201
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 202
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 203
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 204
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 205
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 206
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 207
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 208
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 209

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseAnonymizationService.java

Rule Violation Line
ImmutableField Private field '_plugin' could be made final; it is only initialized in the declaration or constructor. 75

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseResourceIdService.java

Rule Violation Line
MissingOverride The method 'register()' is missing an @Override annotation. 6179
ShortVariable Avoid variables with short names like rt 63
ShortVariable Avoid variables with short names like p 68
MissingOverride The method 'getResourceIdList(Locale)' is missing an @Override annotation. 8891
MissingOverride The method 'getTitle(String, Locale)' is missing an @Override annotation. 102105

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseService.java

Rule Violation Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 34823
GodClass Possible God Class (WMC=64, ATFD=83, TCC=8.300%) 100823
TooManyMethods This class has too many methods, consider refactoring it. 101823
ConfusingTernary Avoid if (x != y) ..; else ..; 195202
AvoidSynchronizedAtMethodLevel Use block level rather than method level synchronization 210218
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 229
UseStringBufferForStringAppends Prefer StringBuilder (non-synchronized) or StringBuffer (synchronized) over += for concatenating strings 379
ConfusingTernary Avoid if (x != y) ..; else ..; 429445
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 607
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 681
CyclomaticComplexity The method 'getXmlFromUser(DatabaseUser, boolean, boolean, boolean, List, Locale)' has a cyclomatic complexity of 10. 719803

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/GroupResourceIdService.java

Rule Violation Line
MissingOverride The method 'register()' is missing an @Override annotation. 5972
ShortVariable Avoid variables with short names like rt 61
ShortVariable Avoid variables with short names like p 66
MissingOverride The method 'getResourceIdList(Locale)' is missing an @Override annotation. 8184
MissingOverride The method 'getTitle(String, Locale)' is missing an @Override annotation. 9598

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/ImportDatabaseUserService.java

Rule Violation Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 34461
ImmutableField Private field '_userParamService' could be made final; it is only initialized in the declaration or constructor. 98
CyclomaticComplexity The method 'readLineOfCSVFile(String, int, Locale, String)' has a cyclomatic complexity of 25. 104314
NcssCount The method 'readLineOfCSVFile(String, int, Locale, String)' has a NCSS line count of 107. 104314
NPathComplexity The method 'readLineOfCSVFile(String, int, Locale, String)' has an NPath complexity of 19008 104314
ExcessiveMethodLength Avoid really long methods. 104314
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 181
AvoidReassigningLoopVariables Avoid reassigning the loop control variable 'strValue' 268
AvoidCatchingGenericException Avoid catching generic exceptions such as NullPointerException, RuntimeException, Exception in try-catch block 301
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 323
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 414

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/parameter/DatabaseUserParameterService.java

Rule Violation Line
MissingOverride The method 'findByKey(String, Plugin)' is missing an @Override annotation. 8891
MissingOverride The method 'update(ReferenceItem, Plugin)' is missing an @Override annotation. 101107
MissingOverride The method 'findAll(Plugin)' is missing an @Override annotation. 116119
MissingOverride The method 'isPasswordEncrypted(Plugin)' is missing an @Override annotation. 128131
MissingOverride The method 'getEncryptionAlgorithm(Plugin)' is missing an @Override annotation. 140143
MissingOverride The method 'isAccountCreationValidationEmail(Plugin)' is missing an @Override annotation. 152163
MissingOverride The method 'isJcaptchaEnable(Plugin)' is missing an @Override annotation. 189200

fr/paris/lutece/plugins/mylutece/modules/database/authentication/web/DatabaseJspBean.java

Rule Violation Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 341712
ExcessiveClassLength Avoid really long classes. 1211712
CyclomaticComplexity The class 'DatabaseJspBean' has a total cyclomatic complexity of 148 (highest 17). 1211712
GodClass Possible God Class (WMC=148, ATFD=301, TCC=32.264%) 1211712
TooManyMethods This class has too many methods, consider refactoring it. 1221712
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 313
ImmutableField Private field '_userParamService' could be made final; it is only initialized in the declaration or constructor. 317
ImmutableField Private field '_databaseService' could be made final; it is only initialized in the declaration or constructor. 318
ImmutableField Private field '_userFactory' could be made final; it is only initialized in the declaration or constructor. 319
ImmutableField Private field '_anonymizationService' could be made final; it is only initialized in the declaration or constructor. 320
ImmutableField Private field '_importDatabaseUserService' could be made final; it is only initialized in the declaration or constructor. 321
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 342
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 424
CyclomaticComplexity The method 'doCreateUser(HttpServletRequest)' has a cyclomatic complexity of 17. 443518
NPathComplexity The method 'doCreateUser(HttpServletRequest)' has an NPath complexity of 5184 443518
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 546
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 566
NPathComplexity The method 'doModifyUser(HttpServletRequest)' has an NPath complexity of 200 589657
CyclomaticComplexity The method 'doModifyUser(HttpServletRequest)' has a cyclomatic complexity of 12. 589657
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 600
ConfusingTernary Avoid if (x != y) ..; else ..; 633640
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 717
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 752
ConfusingTernary Avoid if (x != y) ..; else ..; 780808
ForLoopCanBeForeach This for loop can be replaced by a foreach loop 800803
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 822
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 880
ConfusingTernary Avoid if (x != y) ..; else ..; 908936
ForLoopCanBeForeach This for loop can be replaced by a foreach loop 928931
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 1191
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1266
CyclomaticComplexity The method 'getModifyAccountLifeTimeEmails(HttpServletRequest)' has a cyclomatic complexity of 10. 13081392
NcssCount The method 'getModifyAccountLifeTimeEmails(HttpServletRequest)' has a NCSS line count of 61. 13081392
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 1312
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 1482
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1521
UseLocaleWithCaseConversions When doing a String.toLowerCase()/toUpperCase() call, use a Locale 1534
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 1583
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1607
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1623
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1624
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1625
NonThreadSafeSingleton Singleton is not thread safe 17061710

fr/paris/lutece/plugins/mylutece/modules/database/authentication/web/GroupJspBean.java

Rule Violation Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 34868
GodClass Possible God Class (WMC=73, ATFD=116, TCC=28.758%) 81868
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 158
ImmutableField Private field '_databaseService' could be made final; it is only initialized in the declaration or constructor. 162
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 244
AddEmptyString Do not add empty strings 245
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 283
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 329
ConfusingTernary Avoid if (x != y) ..; else ..; 352378
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 358
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 359
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 461
ConfusingTernary Avoid if (x != y) ..; else ..; 486513
ForLoopCanBeForeach This for loop can be replaced by a foreach loop 506509
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 584
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 584
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 586
ConfusingTernary Avoid if (x != y) ..; else ..; 666693
ForLoopCanBeForeach This for loop can be replaced by a foreach loop 684689
CyclomaticComplexity The method 'setItemNavigator(String, String, String)' has a cyclomatic complexity of 10. 796857

fr/paris/lutece/plugins/mylutece/modules/database/authentication/web/MyLuteceDatabaseApp.java

Rule Violation Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 341729
ExcessiveClassLength Avoid really long classes. 961729
CyclomaticComplexity The class 'MyLuteceDatabaseApp' has a total cyclomatic complexity of 200 (highest 25). 961729
GodClass Possible God Class (WMC=200, ATFD=326, TCC=25.128%) 961729
TooManyMethods This class has too many methods, consider refactoring it. 971729
ImmutableField Private field '_userParamService' could be made final; it is only initialized in the declaration or constructor. 251
ImmutableField Private field '_userKeyService' could be made final; it is only initialized in the declaration or constructor. 252
ImmutableField Private field '_captchaService' could be made final; it is only initialized in the declaration or constructor. 253
ImmutableField Private field '_userFactory' could be made final; it is only initialized in the declaration or constructor. 254
ImmutableField Private field '_databaseService' could be made final; it is only initialized in the declaration or constructor. 255
CyclomaticComplexity The method 'getPage(HttpServletRequest, int, Plugin)' has a cyclomatic complexity of 21. 284386
MissingOverride The method 'getPage(HttpServletRequest, int, Plugin)' is missing an @Override annotation. 284386
ExcessiveMethodLength Avoid really long methods. 284386
ConfusingTernary Avoid if (x != y) ..; else ..; 345354
NullAssignment Assigning an Object to null is a code smell. Consider refactoring. 353
ConfusingTernary Avoid if (x != y) ..; else ..; 360375
NullAssignment Assigning an Object to null is a code smell. Consider refactoring. 374
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 533
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 534
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 535
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 536
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 537
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 538
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 539
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 541
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 541
ShortVariable Avoid variables with short names like t 593
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 613
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 613
ShortVariable Avoid variables with short names like t 633
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 652
ShortVariable Avoid variables with short names like t 718
ExcessiveMethodLength Avoid really long methods. 733857
CyclomaticComplexity The method 'doCreateAccount(HttpServletRequest)' has a cyclomatic complexity of 25. 733857
NcssCount The method 'doCreateAccount(HttpServletRequest)' has a NCSS line count of 65. 733857
NPathComplexity The method 'doCreateAccount(HttpServletRequest)' has an NPath complexity of 163296 733857
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 838
CyclomaticComplexity The method 'doModifyAccount(HttpServletRequest)' has a cyclomatic complexity of 13. 866928
ConfusingTernary Avoid if (x != y) ..; else ..; 10161044
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 1021
ShortVariable Avoid variables with short names like t 1035
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 1165
ShortVariable Avoid variables with short names like t 1175
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 1194
ShortVariable Avoid variables with short names like t 1204
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 1223
ShortVariable Avoid variables with short names like t 1239
CyclomaticComplexity The method 'doChangePassword(HttpServletRequest)' has a cyclomatic complexity of 14. 12541317
NPathComplexity The method 'doChangePassword(HttpServletRequest)' has an NPath complexity of 1728 12541317
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1262
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1264
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1265
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 1266
CyclomaticComplexity The method 'doSendPassword(HttpServletRequest)' has a cyclomatic complexity of 15. 13471444
NPathComplexity The method 'doSendPassword(HttpServletRequest)' has an NPath complexity of 540 13471444
NPathComplexity The method 'doSendLogin(HttpServletRequest)' has an NPath complexity of 288 14531527
CyclomaticComplexity The method 'doSendLogin(HttpServletRequest)' has a cyclomatic complexity of 14. 14531527
AvoidLiteralsInIfCondition Avoid using Literals in Conditional Statements 1567
CyclomaticComplexity The method 'reactivateAccount(HttpServletRequest)' has a cyclomatic complexity of 12. 16371691
LinguisticNaming Linguistics Antipattern - The getter 'getMessageResetPassword' should not return void linguistically 17011705

Priority 4

fr/paris/lutece/plugins/mylutece/modules/database/authentication/BaseAuthentication.java

Rule Violation Line
UnnecessaryFullyQualifiedName Unnecessary use of fully qualified name 'java.sql.Timestamp' due to existing import 'java.sql.Timestamp' 216

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserHome.java

Rule Violation Line
UnnecessaryFullyQualifiedName Unnecessary use of fully qualified name 'java.sql.Timestamp' due to existing import 'java.sql.Timestamp' 472

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/ImportDatabaseUserService.java

Rule Violation Line
BooleanGetMethodName A getX() method which returns a boolean should be named isX() 446449

Files

fr/paris/lutece/plugins/mylutece/modules/database/authentication/BaseAuthentication.java

Rule Violation Priority Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 3 34690
UnusedPrivateField Avoid unused private fields such as 'BEAN_USER_ATTRIBUTES_SERVICE'. 3 129
UnnecessaryConstructor Avoid unnecessary constructors - the compiler will generate these for you 3 135138
NPathComplexity The method 'processLogin(String, String, HttpServletRequest)' has an NPath complexity of 9504 3 206331
CyclomaticComplexity The method 'processLogin(String, String, HttpServletRequest)' has a cyclomatic complexity of 28. 3 206331
ExcessiveMethodLength Avoid really long methods. 3 206331
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 208
UnnecessaryFullyQualifiedName Unnecessary use of fully qualified name 'java.sql.Timestamp' due to existing import 'java.sql.Timestamp' 4 216
AvoidDeeplyNestedIfStmts Deeply nested if..then statements are hard to read 3 242250
UseDiamondOperator Explicit type arguments can be replaced by Diamond Operator 3 601
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 630
AvoidLiteralsInIfCondition Avoid using Literals in Conditional Statements 3 672
UseCollectionIsEmpty Substitute calls to size() == 0 (or size() != 0, size() > 0, size() < 1) with calls to isEmpty() 3 677

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseDAO.java

Rule Violation Priority Line
TooManyMethods This class has too many methods, consider refactoring it. 3 56448

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseHome.java

Rule Violation Priority Line
TooManyMethods This class has too many methods, consider refactoring it. 3 50259

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserDAO.java

Rule Violation Priority Line
TooManyMethods This class has too many methods, consider refactoring it. 3 55729
DefaultPackage Use explicit scoping instead of the default package private level 3 9192
CommentDefaultAccessModifier To avoid mistakes add a comment at the beginning of the _passwordFactory field if you want a default access modifier 3 92

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserFactory.java

Rule Violation Priority Line
IdenticalCatchBranches 'catch' branch identical to 'BeanDefinitionStoreException' branch 3 123129
IdenticalCatchBranches 'catch' branch identical to 'BeanDefinitionStoreException' branch 3 130136

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserFilter.java

Rule Violation Priority Line
LinguisticNaming Linguistics Antipattern - The setter 'setDatabaseUserFilter' should not return any type except void linguistically 3 171190
ConfusingTernary Avoid if (x != y) ..; else ..; 3 176187

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserHome.java

Rule Violation Priority Line
TooManyMethods This class has too many methods, consider refactoring it. 3 52474
UnnecessaryFullyQualifiedName Unnecessary use of fully qualified name 'java.sql.Timestamp' due to existing import 'java.sql.Timestamp' 4 472

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/DatabaseUserRoleRemovalListener.java

Rule Violation Priority Line
MissingOverride The method 'canBeRemoved(String)' is missing an @Override annotation. 3 6070
MissingOverride The method 'getRemovalRefusedMessage(String, Locale)' is missing an @Override annotation. 3 8185

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/Group.java

Rule Violation Priority Line
ConfusingTernary Avoid if (x != y) ..; else ..; 3 65
MissingOverride The method 'getResourceTypeCode()' is missing an @Override annotation. 3 9497
MissingOverride The method 'getResourceId()' is missing an @Override annotation. 3 104107

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/GroupDAO.java

Rule Violation Priority Line
AvoidSynchronizedAtMethodLevel Use block level rather than method level synchronization 3 7182

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/GroupFilter.java

Rule Violation Priority Line
LinguisticNaming Linguistics Antipattern - The setter 'setGroupFilter' should not return any type except void linguistically 3 133150
ConfusingTernary Avoid if (x != y) ..; else ..; 3 138147

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/GroupRoleRemovalListener.java

Rule Violation Priority Line
MissingOverride The method 'canBeRemoved(String)' is missing an @Override annotation. 3 6173
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 63
MissingOverride The method 'getRemovalRefusedMessage(String, Locale)' is missing an @Override annotation. 3 8488

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/IDatabaseDAO.java

Rule Violation Priority Line
TooManyMethods This class has too many methods, consider refactoring it. 3 50209

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/IDatabaseUserDAO.java

Rule Violation Priority Line
TooManyMethods This class has too many methods, consider refactoring it. 3 49359

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/key/DatabaseUserKeyDAO.java

Rule Violation Priority Line
MissingOverride The method 'insert(DatabaseUserKey, Plugin)' is missing an @Override annotation. 3 5767
MissingOverride The method 'load(String, Plugin)' is missing an @Override annotation. 3 7290
MissingOverride The method 'delete(String, Plugin)' is missing an @Override annotation. 3 95102
MissingOverride The method 'deleteByIdUser(int, Plugin)' is missing an @Override annotation. 3 107114
MissingOverride The method 'selectKeyByLogin(String, Plugin)' is missing an @Override annotation. 3 119137

fr/paris/lutece/plugins/mylutece/modules/database/authentication/business/parameter/DatabaseUserParameterDAO.java

Rule Violation Priority Line
MissingOverride The method 'load(String, Plugin)' is missing an @Override annotation. 3 5572
MissingOverride The method 'store(ReferenceItem, Plugin)' is missing an @Override annotation. 3 7787
MissingOverride The method 'selectAll(Plugin)' is missing an @Override annotation. 3 92110

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseAccountLifeTimeDaemon.java

Rule Violation Priority Line
ImmutableField Private field '_parameterService' could be made final; it is only initialized in the declaration or constructor. 3 47
UnnecessaryConstructor Avoid unnecessary constructors - the compiler will generate these for you 3 5255

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseAccountLifeTimeService.java

Rule Violation Priority Line
ImmutableField Private field '_plugin' could be made final; it is only initialized in the declaration or constructor. 3 77
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 3 201
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 3 202
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 3 203
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 3 204
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 3 205
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 3 206
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 3 207
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 3 208
ConsecutiveAppendsShouldReuse StringBuffer (or StringBuilder).append is called consecutively without reusing the target variable. 3 209

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseAnonymizationService.java

Rule Violation Priority Line
ImmutableField Private field '_plugin' could be made final; it is only initialized in the declaration or constructor. 3 75

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseResourceIdService.java

Rule Violation Priority Line
MissingOverride The method 'register()' is missing an @Override annotation. 3 6179
ShortVariable Avoid variables with short names like rt 3 63
ShortVariable Avoid variables with short names like p 3 68
MissingOverride The method 'getResourceIdList(Locale)' is missing an @Override annotation. 3 8891
MissingOverride The method 'getTitle(String, Locale)' is missing an @Override annotation. 3 102105

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/DatabaseService.java

Rule Violation Priority Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 3 34823
GodClass Possible God Class (WMC=64, ATFD=83, TCC=8.300%) 3 100823
TooManyMethods This class has too many methods, consider refactoring it. 3 101823
ConfusingTernary Avoid if (x != y) ..; else ..; 3 195202
AvoidSynchronizedAtMethodLevel Use block level rather than method level synchronization 3 210218
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 229
UseStringBufferForStringAppends Prefer StringBuilder (non-synchronized) or StringBuffer (synchronized) over += for concatenating strings 3 379
ConfusingTernary Avoid if (x != y) ..; else ..; 3 429445
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 607
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 681
CyclomaticComplexity The method 'getXmlFromUser(DatabaseUser, boolean, boolean, boolean, List, Locale)' has a cyclomatic complexity of 10. 3 719803

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/GroupResourceIdService.java

Rule Violation Priority Line
MissingOverride The method 'register()' is missing an @Override annotation. 3 5972
ShortVariable Avoid variables with short names like rt 3 61
ShortVariable Avoid variables with short names like p 3 66
MissingOverride The method 'getResourceIdList(Locale)' is missing an @Override annotation. 3 8184
MissingOverride The method 'getTitle(String, Locale)' is missing an @Override annotation. 3 9598

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/ImportDatabaseUserService.java

Rule Violation Priority Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 3 34461
ImmutableField Private field '_userParamService' could be made final; it is only initialized in the declaration or constructor. 3 98
CyclomaticComplexity The method 'readLineOfCSVFile(String, int, Locale, String)' has a cyclomatic complexity of 25. 3 104314
NcssCount The method 'readLineOfCSVFile(String, int, Locale, String)' has a NCSS line count of 107. 3 104314
NPathComplexity The method 'readLineOfCSVFile(String, int, Locale, String)' has an NPath complexity of 19008 3 104314
ExcessiveMethodLength Avoid really long methods. 3 104314
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 181
AvoidReassigningLoopVariables Avoid reassigning the loop control variable 'strValue' 3 268
AvoidCatchingGenericException Avoid catching generic exceptions such as NullPointerException, RuntimeException, Exception in try-catch block 3 301
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 323
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 414
BooleanGetMethodName A getX() method which returns a boolean should be named isX() 4 446449

fr/paris/lutece/plugins/mylutece/modules/database/authentication/service/parameter/DatabaseUserParameterService.java

Rule Violation Priority Line
MissingOverride The method 'findByKey(String, Plugin)' is missing an @Override annotation. 3 8891
MissingOverride The method 'update(ReferenceItem, Plugin)' is missing an @Override annotation. 3 101107
MissingOverride The method 'findAll(Plugin)' is missing an @Override annotation. 3 116119
MissingOverride The method 'isPasswordEncrypted(Plugin)' is missing an @Override annotation. 3 128131
MissingOverride The method 'getEncryptionAlgorithm(Plugin)' is missing an @Override annotation. 3 140143
MissingOverride The method 'isAccountCreationValidationEmail(Plugin)' is missing an @Override annotation. 3 152163
MissingOverride The method 'isJcaptchaEnable(Plugin)' is missing an @Override annotation. 3 189200

fr/paris/lutece/plugins/mylutece/modules/database/authentication/web/DatabaseJspBean.java

Rule Violation Priority Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 3 341712
ExcessiveClassLength Avoid really long classes. 3 1211712
CyclomaticComplexity The class 'DatabaseJspBean' has a total cyclomatic complexity of 148 (highest 17). 3 1211712
GodClass Possible God Class (WMC=148, ATFD=301, TCC=32.264%) 3 1211712
TooManyMethods This class has too many methods, consider refactoring it. 3 1221712
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 313
ImmutableField Private field '_userParamService' could be made final; it is only initialized in the declaration or constructor. 3 317
ImmutableField Private field '_databaseService' could be made final; it is only initialized in the declaration or constructor. 3 318
ImmutableField Private field '_userFactory' could be made final; it is only initialized in the declaration or constructor. 3 319
ImmutableField Private field '_anonymizationService' could be made final; it is only initialized in the declaration or constructor. 3 320
ImmutableField Private field '_importDatabaseUserService' could be made final; it is only initialized in the declaration or constructor. 3 321
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 342
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 424
CyclomaticComplexity The method 'doCreateUser(HttpServletRequest)' has a cyclomatic complexity of 17. 3 443518
NPathComplexity The method 'doCreateUser(HttpServletRequest)' has an NPath complexity of 5184 3 443518
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 546
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 566
NPathComplexity The method 'doModifyUser(HttpServletRequest)' has an NPath complexity of 200 3 589657
CyclomaticComplexity The method 'doModifyUser(HttpServletRequest)' has a cyclomatic complexity of 12. 3 589657
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 600
ConfusingTernary Avoid if (x != y) ..; else ..; 3 633640
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 717
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 752
ConfusingTernary Avoid if (x != y) ..; else ..; 3 780808
ForLoopCanBeForeach This for loop can be replaced by a foreach loop 3 800803
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 822
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 880
ConfusingTernary Avoid if (x != y) ..; else ..; 3 908936
ForLoopCanBeForeach This for loop can be replaced by a foreach loop 3 928931
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 1191
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1266
CyclomaticComplexity The method 'getModifyAccountLifeTimeEmails(HttpServletRequest)' has a cyclomatic complexity of 10. 3 13081392
NcssCount The method 'getModifyAccountLifeTimeEmails(HttpServletRequest)' has a NCSS line count of 61. 3 13081392
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 1312
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 1482
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1521
UseLocaleWithCaseConversions When doing a String.toLowerCase()/toUpperCase() call, use a Locale 3 1534
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 1583
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1607
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1623
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1624
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1625
NonThreadSafeSingleton Singleton is not thread safe 3 17061710

fr/paris/lutece/plugins/mylutece/modules/database/authentication/web/GroupJspBean.java

Rule Violation Priority Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 3 34868
GodClass Possible God Class (WMC=73, ATFD=116, TCC=28.758%) 3 81868
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 158
ImmutableField Private field '_databaseService' could be made final; it is only initialized in the declaration or constructor. 3 162
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 244
AddEmptyString Do not add empty strings 3 245
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 283
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 329
ConfusingTernary Avoid if (x != y) ..; else ..; 3 352378
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 358
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 359
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 461
ConfusingTernary Avoid if (x != y) ..; else ..; 3 486513
ForLoopCanBeForeach This for loop can be replaced by a foreach loop 3 506509
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 584
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 584
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 586
ConfusingTernary Avoid if (x != y) ..; else ..; 3 666693
ForLoopCanBeForeach This for loop can be replaced by a foreach loop 3 684689
CyclomaticComplexity The method 'setItemNavigator(String, String, String)' has a cyclomatic complexity of 10. 3 796857

fr/paris/lutece/plugins/mylutece/modules/database/authentication/web/MyLuteceDatabaseApp.java

Rule Violation Priority Line
ExcessiveImports A high number of imports can indicate a high degree of coupling within an object. 3 341729
ExcessiveClassLength Avoid really long classes. 3 961729
CyclomaticComplexity The class 'MyLuteceDatabaseApp' has a total cyclomatic complexity of 200 (highest 25). 3 961729
GodClass Possible God Class (WMC=200, ATFD=326, TCC=25.128%) 3 961729
TooManyMethods This class has too many methods, consider refactoring it. 3 971729
ImmutableField Private field '_userParamService' could be made final; it is only initialized in the declaration or constructor. 3 251
ImmutableField Private field '_userKeyService' could be made final; it is only initialized in the declaration or constructor. 3 252
ImmutableField Private field '_captchaService' could be made final; it is only initialized in the declaration or constructor. 3 253
ImmutableField Private field '_userFactory' could be made final; it is only initialized in the declaration or constructor. 3 254
ImmutableField Private field '_databaseService' could be made final; it is only initialized in the declaration or constructor. 3 255
CyclomaticComplexity The method 'getPage(HttpServletRequest, int, Plugin)' has a cyclomatic complexity of 21. 3 284386
MissingOverride The method 'getPage(HttpServletRequest, int, Plugin)' is missing an @Override annotation. 3 284386
ExcessiveMethodLength Avoid really long methods. 3 284386
ConfusingTernary Avoid if (x != y) ..; else ..; 3 345354
NullAssignment Assigning an Object to null is a code smell. Consider refactoring. 3 353
ConfusingTernary Avoid if (x != y) ..; else ..; 3 360375
NullAssignment Assigning an Object to null is a code smell. Consider refactoring. 3 374
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 533
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 534
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 535
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 536
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 537
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 538
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 539
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 541
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 541
ShortVariable Avoid variables with short names like t 3 593
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 613
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 613
ShortVariable Avoid variables with short names like t 3 633
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 652
ShortVariable Avoid variables with short names like t 3 718
ExcessiveMethodLength Avoid really long methods. 3 733857
CyclomaticComplexity The method 'doCreateAccount(HttpServletRequest)' has a cyclomatic complexity of 25. 3 733857
NcssCount The method 'doCreateAccount(HttpServletRequest)' has a NCSS line count of 65. 3 733857
NPathComplexity The method 'doCreateAccount(HttpServletRequest)' has an NPath complexity of 163296 3 733857
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 838
CyclomaticComplexity The method 'doModifyAccount(HttpServletRequest)' has a cyclomatic complexity of 13. 3 866928
ConfusingTernary Avoid if (x != y) ..; else ..; 3 10161044
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 1021
ShortVariable Avoid variables with short names like t 3 1035
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 1165
ShortVariable Avoid variables with short names like t 3 1175
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 1194
ShortVariable Avoid variables with short names like t 3 1204
UseConcurrentHashMap If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation 3 1223
ShortVariable Avoid variables with short names like t 3 1239
CyclomaticComplexity The method 'doChangePassword(HttpServletRequest)' has a cyclomatic complexity of 14. 3 12541317
NPathComplexity The method 'doChangePassword(HttpServletRequest)' has an NPath complexity of 1728 3 12541317
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1262
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1264
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1265
PrematureDeclaration Avoid declaring a variable if it is unreferenced before a possible exit point. 3 1266
CyclomaticComplexity The method 'doSendPassword(HttpServletRequest)' has a cyclomatic complexity of 15. 3 13471444
NPathComplexity The method 'doSendPassword(HttpServletRequest)' has an NPath complexity of 540 3 13471444
NPathComplexity The method 'doSendLogin(HttpServletRequest)' has an NPath complexity of 288 3 14531527
CyclomaticComplexity The method 'doSendLogin(HttpServletRequest)' has a cyclomatic complexity of 14. 3 14531527
AvoidLiteralsInIfCondition Avoid using Literals in Conditional Statements 3 1567
CyclomaticComplexity The method 'reactivateAccount(HttpServletRequest)' has a cyclomatic complexity of 12. 3 16371691
LinguisticNaming Linguistics Antipattern - The getter 'getMessageResetPassword' should not return void linguistically 3 17011705