Résultats PMD
Le document suivant contient les résultats de PMD 6.13.0.
Violations By Priority
Priority 1
fr/paris/lutece/plugins/extend/modules/follow/service/FollowListenerService.java
fr/paris/lutece/plugins/extend/modules/follow/util/constants/FollowConstants.java
Rule |
Violation |
Ligne |
ClassNamingConventions |
The utility class name 'FollowConstants' doesn't match '[A-Z][a-zA-Z0-9]+(Utils?|Helper|Home|Service)' |
41–101 |
FieldNamingConventions |
The public constant name 'MARK_follow_CONFIG' doesn't match '[A-Z][A-Z_0-9]*' |
71 |
Priority 2
fr/paris/lutece/plugins/extend/modules/follow/web/component/FollowResourceExtenderComponent.java
Priority 3
fr/paris/lutece/plugins/extend/modules/follow/business/FollowDAO.java
fr/paris/lutece/plugins/extend/modules/follow/business/FollowFilter.java
fr/paris/lutece/plugins/extend/modules/follow/service/FollowAddOnService.java
fr/paris/lutece/plugins/extend/modules/follow/service/FollowListenerService.java
fr/paris/lutece/plugins/extend/modules/follow/service/FollowService.java
fr/paris/lutece/plugins/extend/modules/follow/service/extender/FollowResourceExtender.java
fr/paris/lutece/plugins/extend/modules/follow/service/validator/FollowValidationManagementService.java
Rule |
Violation |
Ligne |
UseUtilityClass |
All methods are static. Consider using a utility class instead. Alternatively, you could add a private constructor or make the class abstract to silence this warning. |
48–78 |
fr/paris/lutece/plugins/extend/modules/follow/web/FollowJspBean.java
fr/paris/lutece/plugins/extend/modules/follow/web/action/FollowInstallerPluginAction.java
fr/paris/lutece/plugins/extend/modules/follow/web/component/FollowResourceExtenderComponent.java
Rule |
Violation |
Ligne |
ExcessiveImports |
A high number of imports can indicate a high degree of coupling within an object. |
34–234 |
UseDiamondOperator |
Explicit type arguments can be replaced by Diamond Operator |
115 |
UseConcurrentHashMap |
If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation |
115 |
UseDiamondOperator |
Explicit type arguments can be replaced by Diamond Operator |
141 |
UseConcurrentHashMap |
If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation |
141 |
UseConcurrentHashMap |
If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation |
215 |
Priority 4
fr/paris/lutece/plugins/extend/modules/follow/service/IFollowListener.java
Rule |
Violation |
Ligne |
UnusedImports |
Avoid unused imports such as 'java.util.Date' |
36 |
fr/paris/lutece/plugins/extend/modules/follow/web/FollowJspBean.java
Rule |
Violation |
Ligne |
UnusedImports |
Avoid unused imports such as 'fr.paris.lutece.plugins.extend.service.extender.config.IResourceExtenderConfigService' |
45 |
Fichiers
fr/paris/lutece/plugins/extend/modules/follow/business/FollowDAO.java
fr/paris/lutece/plugins/extend/modules/follow/business/FollowFilter.java
fr/paris/lutece/plugins/extend/modules/follow/service/FollowAddOnService.java
fr/paris/lutece/plugins/extend/modules/follow/service/FollowListenerService.java
fr/paris/lutece/plugins/extend/modules/follow/service/FollowService.java
fr/paris/lutece/plugins/extend/modules/follow/service/IFollowListener.java
Rule |
Violation |
Priority |
Ligne |
UnusedImports |
Avoid unused imports such as 'java.util.Date' |
4 |
36 |
fr/paris/lutece/plugins/extend/modules/follow/service/extender/FollowResourceExtender.java
Rule |
Violation |
Priority |
Ligne |
UnusedPrivateField |
Avoid unused private fields such as '_followService'. |
3 |
61 |
fr/paris/lutece/plugins/extend/modules/follow/service/validator/FollowValidationManagementService.java
Rule |
Violation |
Priority |
Ligne |
UseUtilityClass |
All methods are static. Consider using a utility class instead. Alternatively, you could add a private constructor or make the class abstract to silence this warning. |
3 |
48–78 |
fr/paris/lutece/plugins/extend/modules/follow/util/constants/FollowConstants.java
Rule |
Violation |
Priority |
Ligne |
ClassNamingConventions |
The utility class name 'FollowConstants' doesn't match '[A-Z][a-zA-Z0-9]+(Utils?|Helper|Home|Service)' |
1 |
41–101 |
FieldNamingConventions |
The public constant name 'MARK_follow_CONFIG' doesn't match '[A-Z][A-Z_0-9]*' |
1 |
71 |
fr/paris/lutece/plugins/extend/modules/follow/web/FollowJspBean.java
Rule |
Violation |
Priority |
Ligne |
UnusedImports |
Avoid unused imports such as 'fr.paris.lutece.plugins.extend.service.extender.config.IResourceExtenderConfigService' |
4 |
45 |
ImmutableField |
Private field '_resourceExtenderHistoryService' could be made final; it is only initialized in the declaration or constructor. |
3 |
80 |
ImmutableField |
Private field '_followService' could be made final; it is only initialized in the declaration or constructor. |
3 |
81 |
CyclomaticComplexity |
The method 'doFollow(HttpServletRequest, HttpServletResponse)' has a cyclomatic complexity of 15. |
3 |
97–197 |
NPathComplexity |
The method 'doFollow(HttpServletRequest, HttpServletResponse)' has an NPath complexity of 720 |
3 |
97–197 |
ExcessiveMethodLength |
Avoid really long methods. |
3 |
97–197 |
ConfusingTernary |
Avoid if (x != y) ..; else ..; |
3 |
117–135 |
UseStringBufferForStringAppends |
Prefer StringBuilder (non-synchronized) or StringBuffer (synchronized) over += for concatenating strings |
3 |
164 |
PrematureDeclaration |
Avoid declaring a variable if it is unreferenced before a possible exit point. |
3 |
216 |
ConfusingTernary |
Avoid if (x != y) ..; else ..; |
3 |
238–256 |
fr/paris/lutece/plugins/extend/modules/follow/web/action/FollowInstallerPluginAction.java
fr/paris/lutece/plugins/extend/modules/follow/web/component/FollowResourceExtenderComponent.java
Rule |
Violation |
Priority |
Ligne |
ExcessiveImports |
A high number of imports can indicate a high degree of coupling within an object. |
3 |
34–234 |
UseDiamondOperator |
Explicit type arguments can be replaced by Diamond Operator |
3 |
115 |
UseConcurrentHashMap |
If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation |
3 |
115 |
UseDiamondOperator |
Explicit type arguments can be replaced by Diamond Operator |
3 |
141 |
UseConcurrentHashMap |
If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation |
3 |
141 |
GuardLogStatement |
Logger calls should be surrounded by log level guards. |
2 |
173 |
UseConcurrentHashMap |
If you run in Java5 or newer and have concurrent access, you should use the ConcurrentHashMap implementation |
3 |
215 |