Checkstyle Results

The following document contains the results of Checkstyle 9.3 with sun_checks.xml ruleset.

Summary

Files  Info  Warnings  Errors
2 0 0 14

Files

File  I  W  E
com/buralotech/oss/identifier/spring/IdentifierConfig.java 0 0 11
com/buralotech/oss/identifier/spring/IdentifierConverter.java 0 0 3

Rules

Category Rule Violations Severity
coding HiddenField 1  Error
design DesignForExtension 3  Error
imports AvoidStarImport 1  Error
UnusedImports
  • processJavadoc: "false"
1  Error
javadoc JavadocMethod 2  Error
JavadocPackage 1  Error
misc NewlineAtEndOfFile 1  Error
sizes LineLength
  • fileExtensions: "java"
4  Error

Details

com/buralotech/oss/identifier/spring/IdentifierConfig.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error imports AvoidStarImport Using the '.*' form of import should be avoided - com.buralotech.oss.identifier.uuid.*. 20
 Error imports UnusedImports Unused import - org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean. 21
 Error javadoc JavadocMethod Expected @param tag for 'delegate'. 38
 Error javadoc JavadocMethod Expected @param tag for 'service'. 48
 Error design DesignForExtension Class 'IdentifierConfig' looks like designed for extension (can be subclassed), but the method 'version7Delegate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdentifierConfig' final or making the method 'version7Delegate' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error sizes LineLength Line is longer than 80 characters (found 111). 53
 Error design DesignForExtension Class 'IdentifierConfig' looks like designed for extension (can be subclassed), but the method 'version6Delegate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdentifierConfig' final or making the method 'version6Delegate' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error sizes LineLength Line is longer than 80 characters (found 88). 59
 Error design DesignForExtension Class 'IdentifierConfig' looks like designed for extension (can be subclassed), but the method 'version1Delegate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdentifierConfig' final or making the method 'version1Delegate' static/final/abstract/empty, or adding allowed annotation for the method. 64
 Error sizes LineLength Line is longer than 80 characters (found 88). 65

com/buralotech/oss/identifier/spring/IdentifierConverter.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline. 1
 Error sizes LineLength Line is longer than 80 characters (found 87). 24
 Error coding HiddenField 'identifierService' hides a field. 38