Checkstyle Results

The following document contains the results of Checkstyle 9.3 with src/main/checkstyle/checkstyle.xml ruleset.

Summary

Files  Info  Warnings  Errors
61 0 0 350

Files

File  I  W  E
com/github/davidmoten/aws/lw/client/AwsSdkV2Main.java 0 0 5
com/github/davidmoten/aws/lw/client/BaseUrlFactory.java 0 0 3
com/github/davidmoten/aws/lw/client/Client.java 0 0 12
com/github/davidmoten/aws/lw/client/ClientCountLoadedClassesMain.java 0 0 2
com/github/davidmoten/aws/lw/client/ClientMain.java 0 0 4
com/github/davidmoten/aws/lw/client/ClientTest.java 0 0 45
com/github/davidmoten/aws/lw/client/Credentials.java 0 0 3
com/github/davidmoten/aws/lw/client/ExceptionFactory.java 0 0 1
com/github/davidmoten/aws/lw/client/Formats.java 0 0 1
com/github/davidmoten/aws/lw/client/FormatsTest.java 0 0 1
com/github/davidmoten/aws/lw/client/HttpClientTesting.java 0 0 9
com/github/davidmoten/aws/lw/client/HttpClientTestingWithQueue.java 0 0 5
com/github/davidmoten/aws/lw/client/HttpMethod.java 0 0 1
com/github/davidmoten/aws/lw/client/LightweightMain.java 0 0 2
com/github/davidmoten/aws/lw/client/MaxAttemptsExceededException.java 0 0 2
com/github/davidmoten/aws/lw/client/Multipart.java 0 0 8
com/github/davidmoten/aws/lw/client/MultipartMain.java 0 0 1
com/github/davidmoten/aws/lw/client/MultipartTest.java 0 0 13
com/github/davidmoten/aws/lw/client/Request.java 0 0 12
com/github/davidmoten/aws/lw/client/RequestHelper.java 0 0 4
com/github/davidmoten/aws/lw/client/RequestTest.java 0 0 20
com/github/davidmoten/aws/lw/client/Response.java 0 0 8
com/github/davidmoten/aws/lw/client/ResponseInputStream.java 0 0 3
com/github/davidmoten/aws/lw/client/ResponseInputStreamTest.java 0 0 5
com/github/davidmoten/aws/lw/client/ResponseTest.java 0 0 2
com/github/davidmoten/aws/lw/client/RuntimeAnalysisTest.java 0 0 6
com/github/davidmoten/aws/lw/client/internal/Clock.java 0 0 1
com/github/davidmoten/aws/lw/client/internal/EnvironmentDefault.java 0 0 2
com/github/davidmoten/aws/lw/client/internal/EnvironmentDefaultTest.java 0 0 1
com/github/davidmoten/aws/lw/client/internal/ExceptionFactoryDefault.java 0 0 2
com/github/davidmoten/aws/lw/client/internal/ExceptionFactoryExtended.java 0 0 2
com/github/davidmoten/aws/lw/client/internal/HttpClientDefaultTest.java 0 0 2
com/github/davidmoten/aws/lw/client/internal/Retries.java 0 0 3
com/github/davidmoten/aws/lw/client/internal/RetriesTest.java 0 0 4
com/github/davidmoten/aws/lw/client/internal/auth/Aws4SignerForChunkedUpload.java 0 0 12
com/github/davidmoten/aws/lw/client/internal/auth/AwsSignatureVersion4.java 0 0 14
com/github/davidmoten/aws/lw/client/internal/auth/AwsSignatureVersion4Test.java 0 0 11
com/github/davidmoten/aws/lw/client/internal/auth/HttpUtils.java 0 0 2
com/github/davidmoten/aws/lw/client/internal/auth/PutS3ObjectChunkedSample.java 0 0 46
com/github/davidmoten/aws/lw/client/internal/util/Preconditions.java 0 0 3
com/github/davidmoten/aws/lw/client/internal/util/PreconditionsTest.java 0 0 3
com/github/davidmoten/aws/lw/client/internal/util/Util.java 0 0 3
com/github/davidmoten/aws/lw/client/internal/util/UtilTest.java 0 0 6
com/github/davidmoten/aws/lw/client/xml/XmlElement.java 0 0 25
com/github/davidmoten/aws/lw/client/xml/XmlParseException.java 0 0 12
com/github/davidmoten/aws/lw/client/xml/builder/Xml.java 0 0 1
com/github/davidmoten/aws/lw/client/xml/builder/XmlTest.java 0 0 17

Rules

Category Rule Violations Severity
blocks LeftCurly 3  Error
NeedBraces 3  Error
coding EmptyStatement 1  Error
design DesignForExtension 8  Error
HideUtilityClassConstructor 7  Error
VisibilityModifier 20  Error
javadoc JavadocMethod 23  Error
JavadocPackage 6  Error
JavadocStyle 14  Error
modifier RedundantModifier 5  Error
naming ConstantName 5  Error
StaticVariableName 1  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
144  Error
sizes LineLength
  • fileExtensions: "java"
  • max: "120"
28  Error
MethodLength 1  Error
whitespace NoWhitespaceAfter 3  Error
OperatorWrap 7  Error
ParenPad 19  Error
WhitespaceAfter 8  Error
WhitespaceAround 44  Error

Details

com/github/davidmoten/aws/lw/client/AwsSdkV2Main.java

Severity Category Rule Message Line
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 22
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error sizes LineLength Line is longer than 120 characters (found 166). 24
 Error sizes LineLength Line is longer than 120 characters (found 141). 31
 Error sizes LineLength Line is longer than 120 characters (found 143). 38

com/github/davidmoten/aws/lw/client/BaseUrlFactory.java

Severity Category Rule Message Line
 Error modifier RedundantModifier Redundant 'public' modifier. 10
 Error modifier RedundantModifier Redundant 'static' modifier. 10
 Error modifier RedundantModifier Redundant 'final' modifier. 10

com/github/davidmoten/aws/lw/client/Client.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 133
 Error whitespace ParenPad '(' is followed by whitespace. 162
 Error whitespace ParenPad '(' is followed by whitespace. 163
 Error regexp RegexpSingleline Line has trailing spaces. 173
 Error whitespace ParenPad '(' is followed by whitespace. 305
 Error regexp RegexpSingleline Line has trailing spaces. 321
 Error regexp RegexpSingleline Line has trailing spaces. 327
 Error regexp RegexpSingleline Line has trailing spaces. 336
 Error regexp RegexpSingleline Line has trailing spaces. 346
 Error regexp RegexpSingleline Line has trailing spaces. 352
 Error regexp RegexpSingleline Line has trailing spaces. 355
 Error regexp RegexpSingleline Line has trailing spaces. 364

com/github/davidmoten/aws/lw/client/ClientCountLoadedClassesMain.java

Severity Category Rule Message Line
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4

com/github/davidmoten/aws/lw/client/ClientMain.java

Severity Category Rule Message Line
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 20
 Error sizes MethodLength Method main length is 253 lines (max allowed is 150). 24
 Error sizes LineLength Line is longer than 120 characters (found 137). 126
 Error regexp RegexpSingleline Line has trailing spaces. 129

com/github/davidmoten/aws/lw/client/ClientTest.java

Severity Category Rule Message Line
 Error naming ConstantName Name 'hc' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 26
 Error naming ConstantName Name 's3' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 28
 Error sizes LineLength Line is longer than 120 characters (found 250). 67
 Error sizes LineLength Line is longer than 120 characters (found 139). 75
 Error sizes LineLength Line is longer than 120 characters (found 250). 140
 Error sizes LineLength Line is longer than 120 characters (found 139). 147
 Error regexp RegexpSingleline Line has trailing spaces. 156
 Error regexp RegexpSingleline Line has trailing spaces. 208
 Error regexp RegexpSingleline Line has trailing spaces. 213
 Error regexp RegexpSingleline Line has trailing spaces. 218
 Error regexp RegexpSingleline Line has trailing spaces. 223
 Error regexp RegexpSingleline Line has trailing spaces. 228
 Error sizes LineLength Line is longer than 120 characters (found 153). 328
 Error sizes LineLength Line is longer than 120 characters (found 198). 341
 Error regexp RegexpSingleline Line has trailing spaces. 498
 Error sizes LineLength Line is longer than 120 characters (found 363). 541
 Error sizes LineLength Line is longer than 120 characters (found 348). 564
 Error sizes LineLength Line is longer than 120 characters (found 348). 585
 Error sizes LineLength Line is longer than 120 characters (found 373). 605
 Error sizes LineLength Line is longer than 120 characters (found 317). 625
 Error sizes LineLength Line is longer than 120 characters (found 337). 645
 Error sizes LineLength Line is longer than 120 characters (found 265). 675
 Error regexp RegexpSingleline Line has trailing spaces. 703
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 726
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 726
 Error regexp RegexpSingleline Line has trailing spaces. 736
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 737
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 737
 Error regexp RegexpSingleline Line has trailing spaces. 747
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 748
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 748
 Error regexp RegexpSingleline Line has trailing spaces. 758
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 759
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 759
 Error regexp RegexpSingleline Line has trailing spaces. 769
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 770
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 770
 Error regexp RegexpSingleline Line has trailing spaces. 780
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 781
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 781
 Error regexp RegexpSingleline Line has trailing spaces. 791
 Error regexp RegexpSingleline Line has trailing spaces. 839
 Error regexp RegexpSingleline Line has trailing spaces. 899
 Error whitespace ParenPad '(' is followed by whitespace. 904
 Error regexp RegexpSingleline Line has trailing spaces. 911

com/github/davidmoten/aws/lw/client/Credentials.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 9
 Error regexp RegexpSingleline Line has trailing spaces. 19
 Error regexp RegexpSingleline Line has trailing spaces. 27

com/github/davidmoten/aws/lw/client/ExceptionFactory.java

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

com/github/davidmoten/aws/lw/client/Formats.java

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

com/github/davidmoten/aws/lw/client/FormatsTest.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 11

com/github/davidmoten/aws/lw/client/HttpClientTesting.java

Severity Category Rule Message Line
 Error design VisibilityModifier Variable 'endpointUrl' must be private and have accessor methods. 17
 Error design VisibilityModifier Variable 'httpMethod' must be private and have accessor methods. 18
 Error design VisibilityModifier Variable 'headers' must be private and have accessor methods. 19
 Error design VisibilityModifier Variable 'requestBody' must be private and have accessor methods. 20
 Error design VisibilityModifier Variable 'connectTimeoutMs' must be private and have accessor methods. 21
 Error design VisibilityModifier Variable 'readTimeoutMs' must be private and have accessor methods. 22
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 41
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 41

com/github/davidmoten/aws/lw/client/HttpClientTestingWithQueue.java

Severity Category Rule Message Line
 Error design DesignForExtension Class 'HttpClientTestingWithQueue' looks like designed for extension (can be subclassed), but the method 'add' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'HttpClientTestingWithQueue' final or making the method 'add' static/final/abstract/empty, or adding allowed annotation for the method. 19
 Error design DesignForExtension Class 'HttpClientTestingWithQueue' looks like designed for extension (can be subclassed), but the method 'add' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'HttpClientTestingWithQueue' final or making the method 'add' static/final/abstract/empty, or adding allowed annotation for the method. 23
 Error design DesignForExtension Class 'HttpClientTestingWithQueue' looks like designed for extension (can be subclassed), but the method 'urls' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'HttpClientTestingWithQueue' final or making the method 'urls' static/final/abstract/empty, or adding allowed annotation for the method. 27
 Error design DesignForExtension Class 'HttpClientTestingWithQueue' looks like designed for extension (can be subclassed), but the method 'bytes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'HttpClientTestingWithQueue' final or making the method 'bytes' static/final/abstract/empty, or adding allowed annotation for the method. 31
 Error design DesignForExtension Class 'HttpClientTestingWithQueue' looks like designed for extension (can be subclassed), but the method 'request' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'HttpClientTestingWithQueue' final or making the method 'request' static/final/abstract/empty, or adding allowed annotation for the method. 35

com/github/davidmoten/aws/lw/client/HttpMethod.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 4

com/github/davidmoten/aws/lw/client/LightweightMain.java

Severity Category Rule Message Line
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 3
 Error regexp RegexpSingleline Line has trailing spaces. 4

com/github/davidmoten/aws/lw/client/MaxAttemptsExceededException.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 6
 Error regexp RegexpSingleline Line has trailing spaces. 9

com/github/davidmoten/aws/lw/client/Multipart.java

Severity Category Rule Message Line
 Error design VisibilityModifier Variable 'key' must be private and have accessor methods. 34
 Error design VisibilityModifier Variable 'executor' must be private and have accessor methods. 35
 Error design VisibilityModifier Variable 'timeoutMs' must be private and have accessor methods. 36
 Error design VisibilityModifier Variable 'transform' must be private and have accessor methods. 37
 Error design VisibilityModifier Variable 'partSize' must be private and have accessor methods. 38
 Error design VisibilityModifier Variable 'retries' must be private and have accessor methods. 39
 Error regexp RegexpSingleline Line has trailing spaces. 124
 Error regexp RegexpSingleline Line has trailing spaces. 130

com/github/davidmoten/aws/lw/client/MultipartMain.java

Severity Category Rule Message Line
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 5

com/github/davidmoten/aws/lw/client/MultipartTest.java

Severity Category Rule Message Line
 Error whitespace ParenPad '(' is followed by whitespace. 92
 Error design DesignForExtension Class 'MultipartTest' looks like designed for extension (can be subclassed), but the method 'testMultipart' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MultipartTest' final or making the method 'testMultipart' static/final/abstract/empty, or adding allowed annotation for the method. 99
 Error whitespace WhitespaceAround '+' is not preceded with whitespace. 108
 Error whitespace ParenPad '(' is followed by whitespace. 126
 Error whitespace ParenPad '(' is followed by whitespace. 207
 Error whitespace ParenPad '(' is followed by whitespace. 243
 Error whitespace ParenPad '(' is followed by whitespace. 287
 Error whitespace ParenPad '(' is followed by whitespace. 342
 Error regexp RegexpSingleline Line has trailing spaces. 353
 Error regexp RegexpSingleline Line has trailing spaces. 361
 Error regexp RegexpSingleline Line has trailing spaces. 369
 Error regexp RegexpSingleline Line has trailing spaces. 377
 Error regexp RegexpSingleline Line has trailing spaces. 385

com/github/davidmoten/aws/lw/client/Request.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 94
 Error whitespace WhitespaceAround '>=' is not followed by whitespace. 144
 Error regexp RegexpSingleline Line has trailing spaces. 148
 Error regexp RegexpSingleline Line has trailing spaces. 154
 Error whitespace WhitespaceAround '>=' is not followed by whitespace. 166
 Error regexp RegexpSingleline Line has trailing spaces. 184
 Error regexp RegexpSingleline Line has trailing spaces. 202
 Error regexp RegexpSingleline Line has trailing spaces. 221
 Error javadoc JavadocMethod Expected @param tag for 'expectedStatusCode'. 225
 Error regexp RegexpSingleline Line has trailing spaces. 292
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 335
 Error design VisibilityModifier Variable 'value' must be private and have accessor methods. 336

com/github/davidmoten/aws/lw/client/RequestHelper.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error design VisibilityModifier Variable 'name' must be private and have accessor methods. 214
 Error design VisibilityModifier Variable 'value' must be private and have accessor methods. 215

com/github/davidmoten/aws/lw/client/RequestTest.java

Severity Category Rule Message Line
 Error whitespace WhitespaceAround '->' is not followed by whitespace. 32
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 32
 Error whitespace WhitespaceAround '{' is not preceded with whitespace. 32
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 32
 Error whitespace NoWhitespaceAfter '{' is followed by whitespace. 33
 Error whitespace WhitespaceAround '->' is not followed by whitespace. 42
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 42
 Error whitespace WhitespaceAround '{' is not preceded with whitespace. 42
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 42
 Error whitespace NoWhitespaceAfter '{' is followed by whitespace. 43
 Error whitespace WhitespaceAround '->' is not followed by whitespace. 51
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 51
 Error whitespace WhitespaceAround '{' is not preceded with whitespace. 51
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 51
 Error whitespace NoWhitespaceAfter '{' is followed by whitespace. 52
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 59
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 60
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 61
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 62

com/github/davidmoten/aws/lw/client/Response.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error whitespace ParenPad '(' is followed by whitespace. 63
 Error regexp RegexpSingleline Line has trailing spaces. 93
 Error whitespace ParenPad '(' is followed by whitespace. 109
 Error whitespace ParenPad '(' is followed by whitespace. 110
 Error regexp RegexpSingleline Line has trailing spaces. 114
 Error regexp RegexpSingleline Line has trailing spaces. 118

com/github/davidmoten/aws/lw/client/ResponseInputStream.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 23
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error regexp RegexpSingleline Line has trailing spaces. 36

com/github/davidmoten/aws/lw/client/ResponseInputStreamTest.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 11
 Error whitespace WhitespaceAround '->' is not followed by whitespace. 14
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 14
 Error whitespace WhitespaceAround '{' is not preceded with whitespace. 14
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 14

com/github/davidmoten/aws/lw/client/ResponseTest.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 93
 Error regexp RegexpSingleline Line has trailing spaces. 101

com/github/davidmoten/aws/lw/client/RuntimeAnalysisTest.java

Severity Category Rule Message Line
 Error coding EmptyStatement Empty statement. 37
 Error design VisibilityModifier Variable 'coldStartRuntime2GBLight' must be private and have accessor methods. 48
 Error design VisibilityModifier Variable 'warmStartRuntime2GBLight10SampleAverage' must be private and have accessor methods. 49
 Error design VisibilityModifier Variable 'apigLambdaRequestTimeMs' must be private and have accessor methods. 50
 Error modifier RedundantModifier Redundant 'public' modifier. 52
 Error whitespace ParenPad '(' is followed by whitespace. 132

com/github/davidmoten/aws/lw/client/internal/Clock.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 7

com/github/davidmoten/aws/lw/client/internal/EnvironmentDefault.java

Severity Category Rule Message Line
 Error naming StaticVariableName Name 'INSTANCE' must match pattern '^[a-z][a-zA-Z0-9]*$'. 6
 Error design VisibilityModifier Variable 'INSTANCE' must be private and have accessor methods. 6

com/github/davidmoten/aws/lw/client/internal/EnvironmentDefaultTest.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 8

com/github/davidmoten/aws/lw/client/internal/ExceptionFactoryDefault.java

Severity Category Rule Message Line
 Error whitespace WhitespaceAround '{' is not preceded with whitespace. 10
 Error design DesignForExtension Class 'ExceptionFactoryDefault' looks like designed for extension (can be subclassed), but the method 'create' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ExceptionFactoryDefault' final or making the method 'create' static/final/abstract/empty, or adding allowed annotation for the method. 12

com/github/davidmoten/aws/lw/client/internal/ExceptionFactoryExtended.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 120 characters (found 167). 16
 Error design DesignForExtension Class 'ExceptionFactoryExtended' looks like designed for extension (can be subclassed), but the method 'create' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'ExceptionFactoryExtended' final or making the method 'create' static/final/abstract/empty, or adding allowed annotation for the method. 22

com/github/davidmoten/aws/lw/client/internal/HttpClientDefaultTest.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 63
 Error regexp RegexpSingleline Line has trailing spaces. 76

com/github/davidmoten/aws/lw/client/internal/Retries.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error whitespace ParenPad '(' is followed by whitespace. 35
 Error regexp RegexpSingleline Line has trailing spaces. 121

com/github/davidmoten/aws/lw/client/internal/RetriesTest.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error regexp RegexpSingleline Line has trailing spaces. 59
 Error regexp RegexpSingleline Line has trailing spaces. 64

com/github/davidmoten/aws/lw/client/internal/auth/Aws4SignerForChunkedUpload.java

Severity Category Rule Message Line
 Error javadoc JavadocStyle First sentence should end with a period. 21
 Error javadoc JavadocStyle First sentence should end with a period. 26
 Error javadoc JavadocStyle First sentence should end with a period. 45
 Error javadoc JavadocStyle First sentence should end with a period. 51
 Error javadoc JavadocStyle First sentence should end with a period. 56
 Error regexp RegexpSingleline Line has trailing spaces. 77
 Error regexp RegexpSingleline Line has trailing spaces. 154
 Error javadoc JavadocStyle First sentence should end with a period. 155
 Error regexp RegexpSingleline Line has trailing spaces. 157
 Error javadoc JavadocStyle First sentence should end with a period. 176
 Error regexp RegexpSingleline Line has trailing spaces. 179
 Error regexp RegexpSingleline Line has trailing spaces. 195

com/github/davidmoten/aws/lw/client/internal/auth/AwsSignatureVersion4.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error javadoc JavadocStyle First sentence should end with a period. 28
 Error javadoc JavadocStyle First sentence should end with a period. 34
 Error javadoc JavadocStyle First sentence should end with a period. 42
 Error naming ConstantName Name 'ISO8601BasicFormat' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 43
 Error naming ConstantName Name 'DateStringFormat' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 44
 Error regexp RegexpSingleline Line has trailing spaces. 53
 Error regexp RegexpSingleline Line has trailing spaces. 109
 Error regexp RegexpSingleline Line has trailing spaces. 157
 Error regexp RegexpSingleline Line has trailing spaces. 260
 Error blocks NeedBraces 'if' construct must use '{}'s. 271
 Error regexp RegexpSingleline Line has trailing spaces. 282
 Error regexp RegexpSingleline Line has trailing spaces. 309
 Error regexp RegexpSingleline Line has trailing spaces. 331

com/github/davidmoten/aws/lw/client/internal/auth/AwsSignatureVersion4Test.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 12
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 23
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 23
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 25
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 25
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 25
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 28
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 28

com/github/davidmoten/aws/lw/client/internal/auth/HttpUtils.java

Severity Category Rule Message Line
 Error javadoc JavadocStyle First sentence should end with a period. 14
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 17

com/github/davidmoten/aws/lw/client/internal/auth/PutS3ObjectChunkedSample.java

Severity Category Rule Message Line
 Error javadoc JavadocStyle First sentence should end with a period. 12
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 16
 Error regexp RegexpSingleline Line has trailing spaces. 17
 Error regexp RegexpSingleline Line has trailing spaces. 18
 Error naming ConstantName Name 'contentSeed' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 18
 Error sizes LineLength Line is longer than 120 characters (found 122). 24
 Error sizes LineLength Line is longer than 120 characters (found 126). 25
 Error regexp RegexpSingleline Line has trailing spaces. 28
 Error sizes LineLength Line is longer than 120 characters (found 123). 32
 Error javadoc JavadocMethod Expected @param tag for 'bucketName'. 32
 Error javadoc JavadocMethod Expected @param tag for 'regionName'. 32
 Error javadoc JavadocMethod Expected @param tag for 'awsAccessKey'. 32
 Error javadoc JavadocMethod Expected @param tag for 'awsSecretKey'. 32
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error sizes LineLength Line is longer than 120 characters (found 132). 46
 Error regexp RegexpSingleline Line has trailing spaces. 48
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error regexp RegexpSingleline Line has trailing spaces. 53
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error regexp RegexpSingleline Line has trailing spaces. 55
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error regexp RegexpSingleline Line has trailing spaces. 63
 Error regexp RegexpSingleline Line has trailing spaces. 66
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error sizes LineLength Line is longer than 120 characters (found 127). 69
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error regexp RegexpSingleline Line has trailing spaces. 72
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error regexp RegexpSingleline Line has trailing spaces. 77
 Error regexp RegexpSingleline Line has trailing spaces. 78
 Error regexp RegexpSingleline Line has trailing spaces. 81
 Error regexp RegexpSingleline Line has trailing spaces. 87
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error regexp RegexpSingleline Line has trailing spaces. 96
 Error regexp RegexpSingleline Line has trailing spaces. 99
 Error whitespace ParenPad '(' is followed by whitespace. 101
 Error whitespace ParenPad ')' is preceded with whitespace. 101
 Error regexp RegexpSingleline Line has trailing spaces. 104
 Error regexp RegexpSingleline Line has trailing spaces. 109
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error javadoc JavadocMethod @return tag should be present and have description. 132
 Error whitespace ParenPad '(' is followed by whitespace. 134
 Error whitespace ParenPad ')' is preceded with whitespace. 134
 Error regexp RegexpSingleline Line has trailing spaces. 137

com/github/davidmoten/aws/lw/client/internal/util/Preconditions.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error blocks NeedBraces 'if' construct must use '{}'s. 21
 Error blocks NeedBraces 'if' construct must use '{}'s. 26

com/github/davidmoten/aws/lw/client/internal/util/PreconditionsTest.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 13
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 14
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 14

com/github/davidmoten/aws/lw/client/internal/util/Util.java

Severity Category Rule Message Line
 Error javadoc JavadocMethod @return tag should be present and have description. 111
 Error javadoc JavadocMethod Expected @param tag for 'text'. 111
 Error modifier RedundantModifier Redundant 'final' modifier. 157

com/github/davidmoten/aws/lw/client/internal/util/UtilTest.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 25
 Error regexp RegexpSingleline Line has trailing spaces. 104
 Error regexp RegexpSingleline Line has trailing spaces. 109
 Error regexp RegexpSingleline Line has trailing spaces. 114
 Error regexp RegexpSingleline Line has trailing spaces. 116
 Error regexp RegexpSingleline Line has trailing spaces. 204

com/github/davidmoten/aws/lw/client/xml/XmlElement.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 53
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error regexp RegexpSingleline Line has trailing spaces. 55
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error javadoc JavadocMethod @return tag should be present and have description. 197
 Error javadoc JavadocMethod @return tag should be present and have description. 205
 Error javadoc JavadocMethod @return tag should be present and have description. 215
 Error javadoc JavadocMethod @return tag should be present and have description. 226
 Error javadoc JavadocMethod @return tag should be present and have description. 234
 Error whitespace OperatorWrap '||' should be on a new line. 443
 Error whitespace OperatorWrap '||' should be on a new line. 444
 Error whitespace OperatorWrap '||' should be on a new line. 445
 Error whitespace OperatorWrap '||' should be on a new line. 446
 Error whitespace OperatorWrap '||' should be on a new line. 447
 Error whitespace OperatorWrap '||' should be on a new line. 448
 Error whitespace OperatorWrap '||' should be on a new line. 449
 Error javadoc JavadocMethod Expected @param tag for 'result'. 479
 Error javadoc JavadocMethod Expected @param tag for 'string'. 499
 Error javadoc JavadocMethod Expected @param tag for 'data'. 520
 Error javadoc JavadocMethod @return tag should be present and have description. 546
 Error javadoc JavadocMethod Expected @param tag for 'buf'. 546
 Error javadoc JavadocMethod @return tag should be present and have description. 666
 Error javadoc JavadocMethod @return tag should be present and have description. 679
 Error javadoc JavadocMethod @return tag should be present and have description. 866
 Error javadoc JavadocMethod @return tag should be present and have description. 878

com/github/davidmoten/aws/lw/client/xml/XmlParseException.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 1
 Error javadoc JavadocPackage Missing package-info.java file. 1
 Error regexp RegexpSingleline Line has trailing spaces. 2
 Error regexp RegexpSingleline Line has trailing spaces. 3
 Error regexp RegexpSingleline Line has trailing spaces. 5
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 53
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error javadoc JavadocStyle Extra HTML tag found: </dl><dl><dt><b>Preconditions:</b></dt><dd> 84
 Error javadoc JavadocStyle Unclosed HTML tag found: <dl> 91
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 96
 Error javadoc JavadocMethod @return tag should be present and have description. 110
 Error blocks LeftCurly '{' at column 5 should be on the previous line. 111

com/github/davidmoten/aws/lw/client/xml/builder/Xml.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file. 1

com/github/davidmoten/aws/lw/client/xml/builder/XmlTest.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 120 characters (found 133). 21
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 48
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 48
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error whitespace WhitespaceAround '=' is not followed by whitespace. 53
 Error whitespace WhitespaceAround '=' is not preceded with whitespace. 53
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error sizes LineLength Line is longer than 120 characters (found 128). 61
 Error regexp RegexpSingleline Line has trailing spaces. 65
 Error sizes LineLength Line is longer than 120 characters (found 128). 69
 Error regexp RegexpSingleline Line has trailing spaces. 71
 Error sizes LineLength Line is longer than 120 characters (found 126). 75
 Error regexp RegexpSingleline Line has trailing spaces. 77
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error sizes LineLength Line is longer than 120 characters (found 231). 87
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 87