Fork me on GitHub

Checkstyle Results

The following document contains the results of Checkstyle 6.1.1 with config/sun_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
8 0 0 115

Rules

Category Rule Violations Severity
blocks RightCurly 1  Error
design DesignForExtension 10  Error
imports UnusedImports 5  Error
javadoc JavadocMethod 1  Error
JavadocPackage
  • allowLegacy: "true"
3  Error
JavadocStyle 1  Error
JavadocType 1  Error
JavadocVariable 1  Error
misc FinalParameters 5  Error
regexp RegexpSingleline
  • format: "\s+$"
  • message: "Line has trailing spaces."
37  Error
sizes LineLength 16  Error
whitespace FileTabCharacter
  • eachLine: "true"
28  Error
WhitespaceAround 6  Error

Details

net/osgiliath/sample/webapp/business/impl/conf/CDIMessagingComponents.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error regexp RegexpSingleline Line has trailing spaces. 15
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error regexp RegexpSingleline Line has trailing spaces. 60
 Error design DesignForExtension Method 'properties' is not designed for extension - needs to be abstract, final or empty. 70
 Error javadoc JavadocMethod Missing a Javadoc comment. 70
 Error misc FinalParameters Parameter parser should be final. 72
 Error javadoc JavadocType Missing a Javadoc comment. 79
 Error misc FinalParameters Parameter key should be final. 81
 Error misc FinalParameters Parameter value should be final. 81
 Error misc FinalParameters Parameter properties should be final. 82

net/osgiliath/sample/webapp/business/impl/conf/CDIValidator.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error regexp RegexpSingleline Line has trailing spaces. 36

net/osgiliath/sample/webapp/business/impl/conf/CXFApplication.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error design DesignForExtension Method 'getSingletons' is not designed for extension - needs to be abstract, final or empty. 64

net/osgiliath/sample/webapp/business/impl/conf/SwaggerAPIAccessService.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 15
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error regexp RegexpSingleline Line has trailing spaces. 31

net/osgiliath/sample/webapp/business/impl/conf/SwaggerBeanConfig.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error whitespace FileTabCharacter Line contains a tab character. 38
 Error whitespace FileTabCharacter Line contains a tab character. 39
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error whitespace FileTabCharacter Line contains a tab character. 40
 Error whitespace FileTabCharacter Line contains a tab character. 41
 Error whitespace FileTabCharacter Line contains a tab character. 42
 Error whitespace FileTabCharacter Line contains a tab character. 43
 Error design DesignForExtension Method 'getConfig' is not designed for extension - needs to be abstract, final or empty. 43
 Error whitespace FileTabCharacter Line contains a tab character. 44
 Error whitespace FileTabCharacter Line contains a tab character. 45
 Error sizes LineLength Line is longer than 80 characters (found 107). 46
 Error whitespace FileTabCharacter Line contains a tab character. 46
 Error sizes LineLength Line is longer than 80 characters (found 91). 47
 Error whitespace FileTabCharacter Line contains a tab character. 47
 Error sizes LineLength Line is longer than 80 characters (found 95). 48
 Error whitespace FileTabCharacter Line contains a tab character. 48
 Error sizes LineLength Line is longer than 80 characters (found 100). 49
 Error whitespace FileTabCharacter Line contains a tab character. 49
 Error whitespace FileTabCharacter Line contains a tab character. 50
 Error sizes LineLength Line is longer than 80 characters (found 92). 51
 Error whitespace FileTabCharacter Line contains a tab character. 51
 Error sizes LineLength Line is longer than 80 characters (found 94). 52
 Error whitespace FileTabCharacter Line contains a tab character. 52
 Error whitespace FileTabCharacter Line contains a tab character. 53
 Error whitespace FileTabCharacter Line contains a tab character. 54
 Error whitespace FileTabCharacter Line contains a tab character. 55

net/osgiliath/sample/webapp/business/impl/messaging/HelloServiceJMS.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error imports UnusedImports Unused import - org.apache.camel.Exchange. 37
 Error imports UnusedImports Unused import - org.apache.camel.Processor. 39
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 56
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 56
 Error sizes LineLength Line is longer than 80 characters (found 106). 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error javadoc JavadocStyle First sentence should end with a period. 72
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error design DesignForExtension Method 'persistHello' is not designed for extension - needs to be abstract, final or empty. 78
 Error misc FinalParameters Parameter helloObject should be final. 79
 Error sizes LineLength Line is longer than 80 characters (found 82). 81
 Error blocks RightCurly '}' should be on the same line. 86
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error design DesignForExtension Method 'getHellos' is not designed for extension - needs to be abstract, final or empty. 98
 Error sizes LineLength Line is longer than 80 characters (found 86). 101
 Error sizes LineLength Line is longer than 80 characters (found 103). 103
 Error sizes LineLength Line is longer than 80 characters (found 115). 106
 Error design DesignForExtension Method 'deleteHellos' is not designed for extension - needs to be abstract, final or empty. 112
 Error regexp RegexpSingleline Line has trailing spaces. 120
 Error design DesignForExtension Method 'configure' is not designed for extension - needs to be abstract, final or empty. 124
 Error sizes LineLength Line is longer than 80 characters (found 83). 126
 Error sizes LineLength Line is longer than 80 characters (found 102). 127
 Error sizes LineLength Line is longer than 80 characters (found 107). 128

net/osgiliath/sample/webapp/business/impl/rest/HelloServiceImpl.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error imports UnusedImports Unused import - com.google.common.base.Function. 22
 Error imports UnusedImports Unused import - com.google.common.collect.Iterables. 23
 Error imports UnusedImports Unused import - com.google.common.collect.Lists. 24
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error whitespace FileTabCharacter Line contains a tab character. 41
 Error whitespace FileTabCharacter Line contains a tab character. 42
 Error whitespace FileTabCharacter Line contains a tab character. 43
 Error whitespace FileTabCharacter Line contains a tab character. 44
 Error whitespace FileTabCharacter Line contains a tab character. 45
 Error whitespace FileTabCharacter Line contains a tab character. 46
 Error whitespace FileTabCharacter Line contains a tab character. 47
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error whitespace FileTabCharacter Line contains a tab character. 48
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error regexp RegexpSingleline Line has trailing spaces. 53
 Error design DesignForExtension Method 'persistHello' is not designed for extension - needs to be abstract, final or empty. 57
 Error whitespace FileTabCharacter Line contains a tab character. 59
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error design DesignForExtension Method 'getHellos' is not designed for extension - needs to be abstract, final or empty. 67
 Error regexp RegexpSingleline Line has trailing spaces. 69
 Error sizes LineLength Line is longer than 80 characters (found 120). 70
 Error design DesignForExtension Method 'deleteHellos' is not designed for extension - needs to be abstract, final or empty. 76
 Error whitespace FileTabCharacter Line contains a tab character. 78
 Error regexp RegexpSingleline Line has trailing spaces. 79

net/osgiliath/sample/webapp/business/impl/rest/HelloServiceJaxRS.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error regexp RegexpSingleline Line has trailing spaces. 14
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 55
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 55
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 64
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 64
 Error sizes LineLength Line is longer than 80 characters (found 107). 65