Fork me on GitHub

Checkstyle Results

The following document contains the results of Checkstyle 7.2 with google_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
16 0 519 0

Rules

Category Rule Violations Severity
blocks LeftCurly
  • maxLineLength: "100"
4  Warning
coding VariableDeclarationUsageDistance 4  Warning
imports CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • specialImportsRegExp: "com.google"
  • customImportOrderRules: "STATIC###SPECIAL_IMPORTS###THIRD_PARTY_PACKAGE###STANDARD_JAVA_PACKAGE"
59  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "2"
  • caseIndent: "2"
  • basicOffset: "2"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
320  Warning
javadoc JavadocMethod
  • scope: "public"
  • allowMissingThrowsTags: "true"
  • allowThrowsTagsForSubclasses: "true"
  • allowMissingReturnTag: "true"
  • allowMissingParamTags: "true"
  • minLineCount: "2"
  • allowedAnnotations: "Override, Test"
1  Warning
NonEmptyAtclauseDescription 3  Warning
SummaryJavadoc
  • forbiddenSummaryFragments: "^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"
58  Warning
naming AbbreviationAsWordInName
  • ignoreFinal: "false"
  • allowedAbbreviationLength: "1"
1  Warning
CatchParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
1  Warning
LocalVariableName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
1  Warning
MemberName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
1  Warning
ParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
2  Warning
sizes LineLength
  • max: "100"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
62  Warning
whitespace OperatorWrap
  • tokens: "BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LOR, LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION, SL, SR, STAR "
  • option: "NL"
2  Warning

Details

org/apache/streams/elasticsearch/ElasticsearchClientManager.java

Severity Category Rule Message Line
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 49
 Warning sizes LineLength Line is longer than 100 characters (found 108). 55
 Warning javadoc JavadocMethod Missing a Javadoc comment. 57
 Warning whitespace OperatorWrap '&&' should be on a new line. 58
 Warning whitespace OperatorWrap '&&' should be on a new line. 59

org/apache/streams/elasticsearch/ElasticsearchConfiguration.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnyGetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 11
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnySetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 12
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonIgnore' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 13
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonInclude' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 14
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonProperty' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 15
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonPropertyOrder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 16
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.EqualsBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 17
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.HashCodeBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 18
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.ToStringBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 19
 Warning indentation Indentation '}' have incorrect indentation level 0, expected level should be 4. 27
 Warning blocks LeftCurly '{' at column 1 should be on the previous line. 29
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 31
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 35
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 38
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 42
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 44
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 50
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 53
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 62
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 64
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 75
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 78
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 80
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 86
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 89
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 91
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 97
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 100
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 102
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 103
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 105
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 107
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 113
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 115
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 116
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 118
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 124
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 126
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 127
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 129
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 130
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 132
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 134
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 136
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 137
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 139
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 141
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 142
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 144
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 146
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 147
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 149
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 152
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 154
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 156
 Warning sizes LineLength Line is longer than 100 characters (found 126). 156
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 157
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 159
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 161
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 162
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 163
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 164
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 165
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 166
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 167
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 168
 Warning sizes LineLength Line is longer than 100 characters (found 186). 168
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 169

org/apache/streams/elasticsearch/ElasticsearchMetadataUtil.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.JsonNode' import. Should be before 'org.apache.streams.core.StreamsDatum'. 23
 Warning sizes LineLength Line is longer than 100 characters (found 104). 41
 Warning sizes LineLength Line is longer than 100 characters (found 104). 63
 Warning sizes LineLength Line is longer than 100 characters (found 103). 85
 Warning sizes LineLength Line is longer than 100 characters (found 103). 107

org/apache/streams/elasticsearch/ElasticsearchPersistDeleter.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 100 characters (found 109). 34
 Warning coding VariableDeclarationUsageDistance Distance between variable 'deleteRequest' declaration and its first usage is 4, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 84

org/apache/streams/elasticsearch/ElasticsearchPersistReader.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.ObjectMapper' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 27
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.node.ObjectNode' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 28
 Warning imports CustomImportOrder Import statement for 'com.google.common.collect.Queues' is in the wrong order. Should be in the 'SPECIAL_IMPORTS' group, expecting group 'STANDARD_JAVA_PACKAGE' on this line. 29
 Warning sizes LineLength Line is longer than 100 characters (found 105). 88
 Warning sizes LineLength Line is longer than 100 characters (found 114). 143
 Warning sizes LineLength Line is longer than 100 characters (found 119). 144
 Warning sizes LineLength Line is longer than 100 characters (found 103). 185
 Warning sizes LineLength Line is longer than 100 characters (found 104). 191
 Warning sizes LineLength Line is longer than 100 characters (found 103). 210

org/apache/streams/elasticsearch/ElasticsearchPersistUpdater.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.apache.commons.lang3.StringUtils' import. Should be before 'org.apache.streams.core.StreamsPersistWriter'. 24
 Warning sizes LineLength Line is longer than 100 characters (found 109). 35
 Warning sizes LineLength Line is longer than 100 characters (found 103). 77
 Warning sizes LineLength Line is longer than 100 characters (found 108). 96

org/apache/streams/elasticsearch/ElasticsearchPersistWriter.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.ObjectMapper' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 28
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.node.ObjectNode' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 29
 Warning sizes LineLength Line is longer than 100 characters (found 120). 71
 Warning sizes LineLength Line is longer than 100 characters (found 114). 121
 Warning sizes LineLength Line is longer than 100 characters (found 147). 229
 Warning sizes LineLength Line is longer than 100 characters (found 128). 237
 Warning sizes LineLength Line is longer than 100 characters (found 173). 242
 Warning sizes LineLength Line is longer than 100 characters (found 113). 248
 Warning naming AbbreviationAsWordInName Abbreviation in name 'timeOutThresholdInMS' must contain no more than '1' capital letters. 348
 Warning sizes LineLength Line is longer than 100 characters (found 115). 351
 Warning sizes LineLength Line is longer than 100 characters (found 108). 395
 Warning sizes LineLength Line is longer than 100 characters (found 116). 424
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 517
 Warning sizes LineLength Line is longer than 100 characters (found 131). 532
 Warning sizes LineLength Line is longer than 100 characters (found 174). 537
 Warning sizes LineLength Line is longer than 100 characters (found 112). 554
 Warning sizes LineLength Line is longer than 100 characters (found 101). 573
 Warning sizes LineLength Line is longer than 100 characters (found 136). 574
 Warning sizes LineLength Line is longer than 100 characters (found 108). 603
 Warning coding VariableDeclarationUsageDistance Distance between variable 'millis' declaration and its first usage is 5, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 606
 Warning sizes LineLength Line is longer than 100 characters (found 140). 612
 Warning sizes LineLength Line is longer than 100 characters (found 134). 631
 Warning sizes LineLength Line is longer than 100 characters (found 159). 632
 Warning sizes LineLength Line is longer than 100 characters (found 237). 633

org/apache/streams/elasticsearch/ElasticsearchQuery.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.core.JsonProcessingException' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 25
 Warning sizes LineLength Line is longer than 100 characters (found 105). 67
 Warning sizes LineLength Line is longer than 100 characters (found 102). 161
 Warning sizes LineLength Line is longer than 100 characters (found 137). 199

org/apache/streams/elasticsearch/ElasticsearchReaderConfiguration.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnyGetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 11
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnySetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 12
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonIgnore' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 13
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonInclude' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 14
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonProperty' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 15
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonPropertyOrder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 16
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.EqualsBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 17
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.HashCodeBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 18
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.ToStringBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 19
 Warning indentation Indentation '}' have incorrect indentation level 0, expected level should be 4. 28
 Warning blocks LeftCurly '{' at column 1 should be on the previous line. 32
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 34
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 38
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 41
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 45
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 48
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 52
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 54
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 58
 Warning naming MemberName Member name 'Search' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 60
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 61
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 64
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 73
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 75
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 84
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 86
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 89
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 91
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 97
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 100
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 102
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 108
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 110
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 111
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 113
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 115
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 116
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 118
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 124
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 126
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 127
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 129
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 135
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 137
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 138
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 140
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 141
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 142
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 143
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 145
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 151
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 153
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 154
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 156
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 162
 Warning naming ParameterName Parameter name 'Search' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 163
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 164
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 165
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 167
 Warning naming ParameterName Parameter name 'Search' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 167
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 168
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 169
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 170
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 172
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 174
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 175
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 177
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 179
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 180
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 182
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 184
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 185
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 187
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 188
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 189
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 190
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 192
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 194
 Warning sizes LineLength Line is longer than 100 characters (found 146). 194
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 195
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 197
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 199
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 200
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 201
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 202
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 203
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 204
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 205
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 206
 Warning sizes LineLength Line is longer than 100 characters (found 223). 206
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 207

org/apache/streams/elasticsearch/ElasticsearchWriterConfiguration.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnyGetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 9
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnySetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 10
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonIgnore' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 11
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonInclude' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 12
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonProperty' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 13
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonPropertyOrder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 14
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.EqualsBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 15
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.HashCodeBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 16
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.ToStringBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 17
 Warning indentation Indentation '}' have incorrect indentation level 0, expected level should be 4. 34
 Warning blocks LeftCurly '{' at column 1 should be on the previous line. 38
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 40
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 44
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 46
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 50
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 52
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 56
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 58
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 62
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 64
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 70
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 72
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 76
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 78
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 82
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 85
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 89
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 91
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 95
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 97
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 101
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 103
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 107
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 109
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 112
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 118
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 121
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 123
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 129
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 132
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 134
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 135
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 136
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 137
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 139
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 145
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 147
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 148
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 150
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 156
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 158
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 159
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 161
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 162
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 163
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 164
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 166
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 172
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 174
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 175
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 177
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 183
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 185
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 186
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 188
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 189
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 190
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 191
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 193
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 199
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 201
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 202
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 204
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 210
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 212
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 213
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 215
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 216
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 217
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 218
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 220
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 226
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 228
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 229
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 231
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 237
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 239
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 240
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 242
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 243
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 244
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 245
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 247
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 252
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 254
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 255
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 257
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 262
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 264
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 265
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 267
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 268
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 269
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 270
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 272
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 278
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 280
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 281
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 283
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 289
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 291
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 292
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 294
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 295
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 296
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 297
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 299
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 305
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 307
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 308
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 310
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 316
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 318
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 319
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 321
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 322
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 323
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 324
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 326
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 332
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 334
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 335
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 337
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 343
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 345
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 346
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 348
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 349
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 350
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 351
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 353
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 359
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 361
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 362
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 364
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 370
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 372
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 373
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 375
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 376
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 377
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 378
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 380
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 386
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 388
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 389
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 391
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 397
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 399
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 400
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 402
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 403
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 404
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 405
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 407
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 413
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 415
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 416
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 418
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 424
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 426
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 427
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 429
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 430
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 431
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 432
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 434
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 436
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 437
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 439
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 441
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 442
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 444
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 446
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 447
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 449
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 450
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 451
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 452
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 454
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 456
 Warning sizes LineLength Line is longer than 100 characters (found 293). 456
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 457
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 459
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 461
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 462
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 463
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 464
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 465
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 466
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 467
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 468
 Warning sizes LineLength Line is longer than 100 characters (found 493). 468
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 469

org/apache/streams/elasticsearch/Tags.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnyGetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 8
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnySetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 9
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonIgnore' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 10
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonInclude' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 11
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.EqualsBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 12
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.HashCodeBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 13
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.ToStringBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 14
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 17
 Warning blocks LeftCurly '{' at column 1 should be on the previous line. 24
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 57
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 60
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 63
 Warning sizes LineLength Line is longer than 100 characters (found 101). 63
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 64

org/apache/streams/elasticsearch/processor/DatumFromMetadataAsDocumentProcessor.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.ObjectMapper' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 30
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.node.ObjectNode' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 31
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.datatype.jsonorg.JsonOrgModule' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 32
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.typesafe.config.Config' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 33
 Warning sizes LineLength Line is longer than 100 characters (found 105). 45
 Warning sizes LineLength Line is longer than 100 characters (found 106). 96
 Warning sizes LineLength Line is longer than 100 characters (found 108). 107

org/apache/streams/elasticsearch/processor/DatumFromMetadataProcessor.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.typesafe.config.Config' import. Should be before 'org.apache.streams.elasticsearch.ElasticsearchReaderConfiguration'. 29
 Warning sizes LineLength Line is longer than 100 characters (found 106). 82
 Warning sizes LineLength Line is longer than 100 characters (found 108). 93

org/apache/streams/elasticsearch/processor/DocumentToMetadataProcessor.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.ObjectMapper' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 26
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.node.ObjectNode' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 27
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.datatype.jsonorg.JsonOrgModule' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 28
 Warning sizes LineLength Line is longer than 100 characters (found 108). 67

org/apache/streams/elasticsearch/processor/MetadataFromDocumentProcessor.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.ObjectMapper' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 25
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.node.ObjectNode' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 26
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.datatype.jsonorg.JsonOrgModule' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 27
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.apache.commons.lang3.StringUtils' import. Should be before 'org.apache.streams.jackson.StreamsJacksonMapper'. 28
 Warning sizes LineLength Line is longer than 100 characters (found 106). 43
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 8, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 69

org/apache/streams/elasticsearch/processor/PercolateTagProcessor.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.core.JsonProcessingException' import. Should be before 'org.apache.streams.pojo.json.Activity'. 30
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.ObjectMapper' import. Should be before 'org.apache.streams.pojo.json.Activity'. 31
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.node.ArrayNode' import. Should be before 'org.apache.streams.pojo.json.Activity'. 32
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.node.JsonNodeFactory' import. Should be before 'org.apache.streams.pojo.json.Activity'. 33
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.node.ObjectNode' import. Should be before 'org.apache.streams.pojo.json.Activity'. 34
 Warning sizes LineLength Line is longer than 100 characters (found 103). 92
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 10, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 125
 Warning sizes LineLength Line is longer than 100 characters (found 159). 162
 Warning naming LocalVariableName Local variable name 'aResponse' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 173
 Warning sizes LineLength Line is longer than 100 characters (found 107). 214
 Warning sizes LineLength Line is longer than 100 characters (found 113). 220
 Warning sizes LineLength Line is longer than 100 characters (found 123). 222
 Warning sizes LineLength Line is longer than 100 characters (found 131). 254
 Warning sizes LineLength Line is longer than 100 characters (found 135). 257
 Warning sizes LineLength Line is longer than 100 characters (found 174). 259
 Warning sizes LineLength Line is longer than 100 characters (found 113). 292
 Warning sizes LineLength Line is longer than 100 characters (found 133). 312
 Warning sizes LineLength Line is longer than 100 characters (found 106). 313
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 348
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 349
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 350