Checkstyle Results

The following document contains the results of Checkstyle 6.2 with odl_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
30 0 493 0

Files

File  I  W  E
org/opendaylight/netvirt/openstack/netvirt/providers/ConfigActivator.java 0 8 0
org/opendaylight/netvirt/openstack/netvirt/providers/ConfigInterface.java 0 1 0
org/opendaylight/netvirt/openstack/netvirt/providers/NetvirtProvidersConfigImpl.java 0 4 0
org/opendaylight/netvirt/openstack/netvirt/providers/NetvirtProvidersProvider.java 0 7 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/AbstractServiceInstance.java 0 25 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/OF13Provider.java 0 101 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/PipelineOrchestrator.java 0 9 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/PipelineOrchestratorImpl.java 0 12 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/ArpResponderService.java 0 9 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/ClassifierService.java 0 23 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/EgressAclService.java 0 8 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/IcmpEchoResponderService.java 0 18 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/InboundNatService.java 0 9 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/IngressAclService.java 0 8 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/L2ForwardingService.java 0 18 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/L2RewriteService.java 0 1 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/L3ForwardingService.java 0 5 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/LoadBalancerService.java 0 42 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/OutboundNatService.java 0 13 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/RoutingService.java 0 16 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/Arp.java 0 11 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpFlowFactory.java 0 3 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpOperation.java 0 2 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpResolverMetadata.java 0 32 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpResolverUtils.java 0 1 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpSender.java 0 5 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpUtils.java 0 8 0
org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/GatewayMacResolverService.java 0 94 0

Rules

Category Rule Violations Severity
blocks LeftCurly
  • maxLineLength: "100"
3  Warning
NeedBraces 17  Warning
RightCurly
  • tokens: "CLASS_DEF, METHOD_DEF, CTOR_DEF, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO, STATIC_INIT, INSTANCE_INIT"
  • option: "alone"
2  Warning
RightCurly 2  Warning
coding VariableDeclarationUsageDistance 76  Warning
imports AvoidStarImport 1  Warning
CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###STANDARD_JAVA_PACKAGE###THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS"
  • thirdPartyPackageRegExp: ".*"
  • specialImportsRegExp: "^com.*"
97  Warning
indentation Indentation
  • lineWrappingIndentation: "4"
  • caseIndent: "4"
  • arrayInitIndent: "4"
  • throwsIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
36  Warning
javadoc JavadocMethod
  • allowMissingParamTags: "true"
  • allowedAnnotations: "Override, Test"
  • allowThrowsTagsForSubclasses: "true"
  • scope: "public"
  • allowMissingReturnTag: "true"
  • minLineCount: "2"
  • allowMissingThrowsTags: "true"
16  Warning
JavadocParagraph 2  Warning
JavadocTagContinuationIndentation 1  Warning
modifier ModifierOrder 5  Warning
naming AbbreviationAsWordInName
  • allowedAbbreviationLength: "1"
  • ignoreFinal: "false"
22  Warning
LocalVariableName
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
3  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]*$"
7  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
64  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
27  Warning
MethodParamPad 11  Warning
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"
6  Warning
WhitespaceAround
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
  • allowEmptyMethods: "true"
  • allowEmptyConstructors: "true"
79  Warning

Details

org/opendaylight/netvirt/openstack/netvirt/providers/ConfigActivator.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Constants' import. 46
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 59
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 60
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 61
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 62
 Warning naming LocalVariableName Local variable name 'ConfigurationServiceTracker' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 184
 Warning naming LocalVariableName Local variable name 'NodeCacheManagerTracker' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 200
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 242

org/opendaylight/netvirt/openstack/netvirt/providers/ConfigInterface.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 16

org/opendaylight/netvirt/openstack/netvirt/providers/NetvirtProvidersConfigImpl.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.Executors' import. 12
 Warning imports AvoidStarImport Using the '.*' form of import should be avoided - org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.netvirt.providers.config.rev160109.*. 22
 Warning javadoc JavadocMethod Missing a Javadoc comment. 40

org/opendaylight/netvirt/openstack/netvirt/providers/NetvirtProvidersProvider.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Constants' import. 12
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.md.sal.binding.api.DataBroker' import. 14
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.md.sal.common.api.clustering.CandidateAlreadyRegisteredException' import. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 29
 Warning javadoc JavadocMethod Missing a Javadoc comment. 47
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 12, expected level should be 8. 50
 Warning javadoc JavadocMethod Missing a Javadoc comment. 66

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/AbstractServiceInstance.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Constants' import. 17
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Optional' import. 40
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 44
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 60
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 71
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 84
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 84
 Warning javadoc SummaryJavadoc First sentence should be present. 89
 Warning javadoc SummaryJavadoc First sentence should be present. 97
 Warning javadoc JavadocMethod Missing a Javadoc comment. 114
 Warning indentation Indentation 'createNodePath' have incorrect indentation level 4, expected level should be 8. 131
 Warning javadoc SummaryJavadoc Forbidden summary fragment. 137
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 140
 Warning javadoc JavadocMethod Missing a Javadoc comment. 191
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not preceded with whitespace. 199
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not followed by whitespace. 199
 Warning javadoc JavadocMethod Missing a Javadoc comment. 207
 Warning indentation Indentation 'getOpenFlowNode' have incorrect indentation level 4, expected level should be 8. 208
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not preceded with whitespace. 217
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not followed by whitespace. 217
 Warning coding VariableDeclarationUsageDistance Distance between variable 'matchBuilder' 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). 243
 Warning coding VariableDeclarationUsageDistance Distance between variable 'flowBuilder' declaration and its first usage is 6, 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). 244
 Warning coding VariableDeclarationUsageDistance Distance between variable 'nodeBuilder' declaration and its first usage is 15, 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). 251
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' 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). 254

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/OF13Provider.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.translator.Neutron_IPs' import. 27
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.MdsalHelper' import. 28
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Optional' import. 98
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 162
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 166
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 171
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 171
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 176
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 176
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 176
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 182
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 182
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 182
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 182
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 185
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 8. 205
 Warning sizes LineLength Line is longer than 120 characters (found 122). 294
 Warning sizes LineLength Line is longer than 120 characters (found 128). 302
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 335
 Warning sizes LineLength Line is longer than 120 characters (found 155). 335
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 359
 Warning sizes LineLength Line is longer than 120 characters (found 155). 359
 Warning sizes LineLength Line is longer than 120 characters (found 126). 370
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 373
 Warning sizes LineLength Line is longer than 120 characters (found 154). 373
 Warning sizes LineLength Line is longer than 120 characters (found 127). 384
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 388
 Warning sizes LineLength Line is longer than 120 characters (found 121). 435
 Warning sizes LineLength Line is longer than 120 characters (found 145). 565
 Warning sizes LineLength Line is longer than 120 characters (found 145). 635
 Warning sizes LineLength Line is longer than 120 characters (found 145). 669
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 708
 Warning javadoc SummaryJavadoc First sentence should be present. 716
 Warning blocks LeftCurly '{' should be on the previous line. 723
 Warning whitespace MethodParamPad '(' should be on the previous line. 725
 Warning blocks LeftCurly '{' should be on the previous line. 735
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 822
 Warning sizes LineLength Line is longer than 120 characters (found 126). 836
 Warning sizes LineLength Line is longer than 120 characters (found 135). 846
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 846
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 847
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 848
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 874
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 902
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 926
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 949
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 963
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 987
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 1060
 Warning sizes LineLength Line is longer than 120 characters (found 140). 1061
 Warning blocks LeftCurly '{' should be on the previous line. 1067
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 1077
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 1102
 Warning blocks RightCurly '}' should be on the same line. 1104
 Warning whitespace WhitespaceAround WhitespaceAround: 'else' is not followed by whitespace. 1105
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 1105
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1119
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 1154
 Warning sizes LineLength Line is longer than 120 characters (found 124). 1174
 Warning sizes LineLength Line is longer than 120 characters (found 126). 1177
 Warning sizes LineLength Line is longer than 120 characters (found 134). 1272
 Warning sizes LineLength Line is longer than 120 characters (found 125). 1273
 Warning whitespace OperatorWrap '&&' should be on a new line. 1324
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 1342
 Warning coding VariableDeclarationUsageDistance Distance between variable 'nodeBuilder' declaration and its first usage is 9, 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). 1353
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' 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). 1362
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 1365
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 1456
 Warning naming ParameterName Parameter name 'OFPortOut' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1456
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 1486
 Warning naming ParameterName Parameter name 'OFPortOut' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1486
 Warning sizes LineLength Line is longer than 120 characters (found 125). 1577
 Warning sizes LineLength Line is longer than 120 characters (found 143). 1611
 Warning sizes LineLength Line is longer than 120 characters (found 121). 1612
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not preceded with whitespace. 1620
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not followed by whitespace. 1620
 Warning sizes LineLength Line is longer than 120 characters (found 147). 1631
 Warning sizes LineLength Line is longer than 120 characters (found 125). 1632
 Warning sizes LineLength Line is longer than 120 characters (found 125). 1634
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not preceded with whitespace. 1640
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not followed by whitespace. 1640
 Warning sizes LineLength Line is longer than 120 characters (found 147). 1649
 Warning sizes LineLength Line is longer than 120 characters (found 125). 1650
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not preceded with whitespace. 1658
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not followed by whitespace. 1658
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 1665
 Warning sizes LineLength Line is longer than 120 characters (found 121). 1668
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not preceded with whitespace. 1682
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not followed by whitespace. 1682
 Warning javadoc SummaryJavadoc First sentence should be present. 1688
 Warning sizes LineLength Line is longer than 120 characters (found 161). 1703
 Warning coding VariableDeclarationUsageDistance Distance between variable 'bucketsBuilder' 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). 1779
 Warning coding VariableDeclarationUsageDistance Distance between variable 'bucketList' 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). 1780
 Warning coding VariableDeclarationUsageDistance Distance between variable 'bucketBuilder' 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). 1799
 Warning coding VariableDeclarationUsageDistance Distance between variable 'bucketList' declaration and its first usage is 7, 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). 1800
 Warning javadoc SummaryJavadoc First sentence should be present. 1845
 Warning sizes LineLength Line is longer than 120 characters (found 157). 1859
 Warning whitespace WhitespaceAround WhitespaceAround: '<' is not preceded with whitespace. 1918
 Warning coding VariableDeclarationUsageDistance Distance between variable 'bucketsBuilder' 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). 1941
 Warning coding VariableDeclarationUsageDistance Distance between variable 'bucketList' 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). 1942
 Warning javadoc JavadocMethod Missing a Javadoc comment. 1981

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/PipelineOrchestrator.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'org.opendaylight.yang.gen.v1.urn.tbd.params.xml.ns.yang.network.topology.rev131021.network.topology.topology.Node'should be separated from previous import group. 13
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 25
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 26
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 27
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 28
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 29
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 30
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 31
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 32

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/PipelineOrchestratorImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.Executors' import. 16
 Warning imports CustomImportOrder 'com.google.common.util.concurrent.ThreadFactoryBuilder'should be separated from previous import group. 19
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.NodeCacheListener' import. 23
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.Lists' import. 33
 Warning javadoc SummaryJavadoc First sentence should be present. 39
 Warning javadoc SummaryJavadoc First sentence should be present. 48
 Warning javadoc JavadocMethod Missing a Javadoc comment. 85
 Warning javadoc JavadocMethod Missing a Javadoc comment. 94
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 94
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 106
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 120
 Warning javadoc JavadocMethod Missing a Javadoc comment. 137

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/ArpResponderService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Constants' import. 22
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.Lists' import. 43
 Warning sizes LineLength Line is longer than 120 characters (found 121). 77
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 38, 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). 92
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' declaration and its first usage is 37, 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). 93
 Warning coding VariableDeclarationUsageDistance Distance between variable 'ib' declaration and its first usage is 34, 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). 94
 Warning coding VariableDeclarationUsageDistance Distance between variable 'aab' declaration and its first usage is 33, 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). 95
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' 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). 97
 Warning sizes LineLength Line is longer than 120 characters (found 140). 97

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/ClassifierService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.providers.ConfigInterface' import. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 38
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 39
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.Lists' import. 42
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 47
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 48
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 13, 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). 82
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 85
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' 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). 89
 Warning sizes LineLength Line is longer than 120 characters (found 136). 127
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 9, 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). 147
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 150
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' 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). 197
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 200
 Warning coding VariableDeclarationUsageDistance Distance between variable 'ib' declaration and its first usage is 6, 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). 240
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 14, 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). 241
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' declaration and its first usage is 9, 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). 244
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' 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). 246
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' 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). 302
 Warning coding VariableDeclarationUsageDistance Distance between variable 'nodeBuilder' 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). 334
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' 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). 345
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 348
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' 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). 377

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/EgressAclService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Constants' import. 14
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.translator.Neutron_IPs' import. 22
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 44
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 45
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 46
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 47
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 48
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 49

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/IcmpEchoResponderService.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.providers.ConfigInterface' import. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 35
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 36
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 37
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 45
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 46
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 47
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 48
 Warning sizes LineLength Line is longer than 120 characters (found 134). 67
 Warning blocks NeedBraces 'if' construct must use '{}'s. 69
 Warning sizes LineLength Line is longer than 120 characters (found 130). 74
 Warning sizes LineLength Line is longer than 120 characters (found 146). 88
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 27, 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). 118
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' declaration and its first usage is 26, 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). 119
 Warning coding VariableDeclarationUsageDistance Distance between variable 'ib' declaration and its first usage is 23, 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). 120
 Warning coding VariableDeclarationUsageDistance Distance between variable 'aab' declaration and its first usage is 22, 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). 121
 Warning sizes LineLength Line is longer than 120 characters (found 140). 123

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/InboundNatService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.net.Inet6Address' import. 13
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Action' import. 20
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.Lists' import. 38
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 39
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 40
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' 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). 75
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 76
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' 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). 139
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 140

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/IngressAclService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Constants' import. 15
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.translator.Neutron_IPs' import. 22
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 43
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 44
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 45
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 46
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 47
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 48

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/L2ForwardingService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.providers.ConfigInterface' import. 19
 Warning whitespace EmptyLineSeparator 'CTOR_DEF' should be separated from previous statement. 55
 Warning sizes LineLength Line is longer than 120 characters (found 132). 113
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 113
 Warning coding VariableDeclarationUsageDistance Distance between variable 'nodeBuilder' declaration and its first usage is 6, 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). 166
 Warning coding VariableDeclarationUsageDistance Distance between variable 'flowBuilder' 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). 167
 Warning sizes LineLength Line is longer than 120 characters (found 125). 230
 Warning coding VariableDeclarationUsageDistance Distance between variable 'nodeBuilder' 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). 239
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 492
 Warning sizes LineLength Line is longer than 120 characters (found 123). 492
 Warning naming ParameterName Parameter name 'OFPortOut' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 492
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 577
 Warning naming ParameterName Parameter name 'OFPortOut' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 577
 Warning coding VariableDeclarationUsageDistance Distance between variable 'nodeBuilder' declaration and its first usage is 6, 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). 581
 Warning coding VariableDeclarationUsageDistance Distance between variable 'flowBuilder' 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). 582
 Warning coding VariableDeclarationUsageDistance Distance between variable 'nodeBuilder' 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). 659
 Warning javadoc SummaryJavadoc First sentence should be present. 788
 Warning sizes LineLength Line is longer than 120 characters (found 160). 800

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/L2RewriteService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.providers.ConfigInterface' import. 14

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/L3ForwardingService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Action' import. 17
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.Lists' import. 37
 Warning sizes LineLength Line is longer than 120 characters (found 124). 58
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 9, 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). 76
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 77

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/LoadBalancerService.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Constants' import. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId' import. 44
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 48
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 49
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 50
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 52
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 53
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.Lists' import. 59
 Warning sizes LineLength Line is longer than 120 characters (found 124). 141
 Warning blocks RightCurly '}' should be on the same line. 152
 Warning javadoc SummaryJavadoc First sentence should be present. 163
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 170
 Warning sizes LineLength Line is longer than 120 characters (found 121). 173
 Warning whitespace OperatorWrap '||' should be on a new line. 179
 Warning sizes LineLength Line is longer than 120 characters (found 128). 183
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 20, 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). 194
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' declaration and its first usage is 19, 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). 197
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' 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). 199
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not preceded with whitespace. 211
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not followed by whitespace. 211
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 254
 Warning sizes LineLength Line is longer than 120 characters (found 131). 254
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. 255
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 255
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 260
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 268
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 268
 Warning whitespace OperatorWrap '||' should be on a new line. 273
 Warning sizes LineLength Line is longer than 120 characters (found 128). 277
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 19, 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). 289
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' declaration and its first usage is 14, 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). 292
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' 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). 294
 Warning sizes LineLength Line is longer than 120 characters (found 125). 343
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. 344
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 344
 Warning whitespace OperatorWrap '+' should be on a new line. 356
 Warning whitespace OperatorWrap '||' should be on a new line. 363
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 15, 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). 379
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 382
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' 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). 384
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 435

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/OutboundNatService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.net.Inet6Address' import. 13
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Action' import. 21
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.Lists' import. 43
 Warning naming ParameterName Parameter name 'OutPort' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 68
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 27, 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
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' declaration and its first usage is 26, 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). 85
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions_tmp' declaration and its first usage is 21, 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). 86
 Warning naming LocalVariableName Local variable name 'instructions_tmp' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 86
 Warning coding VariableDeclarationUsageDistance Distance between variable 'ib' declaration and its first usage is 18, 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). 87
 Warning coding VariableDeclarationUsageDistance Distance between variable 'aab' declaration and its first usage is 17, 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). 89
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' 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). 91
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' 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). 176
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' 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). 177

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/RoutingService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Action' import. 20
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.Status' import. 24
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.collect.Lists' import. 42
 Warning whitespace EmptyLineSeparator 'CTOR_DEF' should be separated from previous statement. 52
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 23, 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). 94
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' declaration and its first usage is 18, 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). 95
 Warning coding VariableDeclarationUsageDistance Distance between variable 'ib' declaration and its first usage is 15, 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). 96
 Warning coding VariableDeclarationUsageDistance Distance between variable 'aab' declaration and its first usage is 14, 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). 97
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 103
 Warning sizes LineLength Line is longer than 120 characters (found 140). 106
 Warning sizes LineLength Line is longer than 120 characters (found 139). 114
 Warning coding VariableDeclarationUsageDistance Distance between variable 'isb' declaration and its first usage is 18, 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). 177
 Warning coding VariableDeclarationUsageDistance Distance between variable 'instructions' declaration and its first usage is 13, 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). 178
 Warning coding VariableDeclarationUsageDistance Distance between variable 'ib' 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). 179
 Warning coding VariableDeclarationUsageDistance Distance between variable 'aab' declaration and its first usage is 9, 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). 180
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' 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). 182

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/Arp.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group. 12
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 45
 Warning sizes LineLength Line is longer than 120 characters (found 131). 45
 Warning naming MemberName Member name 'ARP_FIELD_COORDINATES' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 45
 Warning javadoc JavadocMethod Missing a Javadoc comment. 62
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 72
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 77
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 82
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 87
 Warning javadoc SummaryJavadoc First sentence should be present. 128
 Warning javadoc SummaryJavadoc First sentence should be present. 136

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpFlowFactory.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence should be present. 38
 Warning javadoc SummaryJavadoc First sentence should be present. 48
 Warning javadoc SummaryJavadoc First sentence should be present. 61

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpOperation.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 27
 Warning modifier ModifierOrder '@Nullable' annotation modifier does not preceed non-annotation modifiers. 27

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpResolverMetadata.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning javadoc JavadocMethod Missing a Javadoc comment. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 42
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 58
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 61
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 64
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 67
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 70
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 73
 Warning javadoc JavadocMethod Missing a Javadoc comment. 73
 Warning whitespace OperatorWrap '&&' should be on a new line. 75
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 91
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 94
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 97
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 100
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 108
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 116
 Warning blocks NeedBraces 'if' construct must use '{}'s. 163
 Warning blocks NeedBraces 'if' construct must use '{}'s. 165
 Warning blocks NeedBraces 'if' construct must use '{}'s. 167
 Warning blocks NeedBraces 'if' construct must use '{}'s. 171
 Warning blocks NeedBraces 'if' construct must use '{}'s. 173
 Warning blocks NeedBraces 'if' construct must use '{}'s. 176
 Warning blocks NeedBraces 'if' construct must use '{}'s. 178
 Warning blocks NeedBraces 'if' construct must use '{}'s. 181
 Warning blocks NeedBraces 'if' construct must use '{}'s. 183
 Warning blocks NeedBraces 'if' construct must use '{}'s. 186
 Warning blocks NeedBraces 'if' construct must use '{}'s. 188
 Warning blocks NeedBraces 'if' construct must use '{}'s. 192
 Warning blocks NeedBraces 'if' construct must use '{}'s. 194
 Warning blocks NeedBraces 'if' construct must use '{}'s. 196
 Warning blocks NeedBraces 'if' construct must use '{}'s. 198

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpResolverUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.liblldp.Ethernet' import. 12

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpSender.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.liblldp.Ethernet' import. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.util.concurrent.Futures' import. 37
 Warning sizes LineLength Line is longer than 120 characters (found 139). 87
 Warning sizes LineLength Line is longer than 120 characters (found 135). 90
 Warning sizes LineLength Line is longer than 120 characters (found 124). 117

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/ArpUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.liblldp.Ethernet' import. 17
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.net.InetAddresses' import. 23
 Warning javadoc SummaryJavadoc First sentence should be present. 31
 Warning javadoc SummaryJavadoc First sentence should be present. 50
 Warning javadoc JavadocMethod Missing a Javadoc comment. 75
 Warning modifier ModifierOrder '@Nullable' annotation modifier does not preceed non-annotation modifiers. 75
 Warning javadoc JavadocMethod Missing a Javadoc comment. 87
 Warning modifier ModifierOrder '@Nullable' annotation modifier does not preceed non-annotation modifiers. 87

org/opendaylight/netvirt/openstack/netvirt/providers/openflow13/services/arp/GatewayMacResolverService.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.openstack.netvirt.api.ConfigurationService' import. 23
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 72
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 73
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 74
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 75
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 76
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 77
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 78
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 79
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 80
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 81
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 82
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 83
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 84
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 85
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STATIC' group. 87
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 134
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 138
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 142
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 143
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 143
 Warning sizes LineLength Line is longer than 120 characters (found 123). 147
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 160
 Warning sizes LineLength Line is longer than 120 characters (found 138). 161
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. 161
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 161
 Warning sizes LineLength Line is longer than 120 characters (found 137). 171
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 172
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 172
 Warning sizes LineLength Line is longer than 120 characters (found 127). 173
 Warning sizes LineLength Line is longer than 120 characters (found 133). 178
 Warning sizes LineLength Line is longer than 120 characters (found 180). 179
 Warning sizes LineLength Line is longer than 120 characters (found 184). 181
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 209
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 219
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 219
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 220
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 220
 Warning whitespace WhitespaceAround WhitespaceAround: 'else' is not preceded with whitespace. 229
 Warning whitespace WhitespaceAround WhitespaceAround: '}' is not followed by whitespace. 229
 Warning whitespace WhitespaceAround WhitespaceAround: 'else' is not followed by whitespace. 229
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 229
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 254
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 314
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 12, expected level should be one of the following: 16, 20. 333
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be one of the following: 20, 24. 335
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 336
 Warning indentation Indentation 'method call' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 336
 Warning sizes LineLength Line is longer than 120 characters (found 146). 336
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 337
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be one of the following: 20, 24. 338
 Warning indentation Indentation 'method call' child have incorrect indentation level 16, expected level should be one of the following: 20, 24. 339
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be one of the following: 20, 24. 339
 Warning indentation Indentation 'member def type' have incorrect indentation level 16, expected level should be one of the following: 20, 24. 341
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be one of the following: 20, 24. 341
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be one of the following: 20, 24. 342
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 343
 Warning indentation Indentation 'method call' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 343
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 344
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be one of the following: 20, 24. 345
 Warning indentation Indentation 'method call' child have incorrect indentation level 16, expected level should be one of the following: 20, 24. 348
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be one of the following: 20, 24. 348
 Warning sizes LineLength Line is longer than 120 characters (found 130). 348
 Warning indentation Indentation 'member def type' have incorrect indentation level 16, expected level should be one of the following: 20, 24. 351
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be one of the following: 20, 24. 351
 Warning indentation Indentation 'for' have incorrect indentation level 16, expected level should be one of the following: 20, 24. 354
 Warning indentation Indentation 'for' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 355
 Warning indentation Indentation 'member def type' have incorrect indentation level 20, expected level should be one of the following: 24, 28. 355
 Warning indentation Indentation 'for' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 357
 Warning indentation Indentation 'member def type' have incorrect indentation level 20, expected level should be one of the following: 24, 28. 357
 Warning indentation Indentation 'for' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 359
 Warning indentation Indentation 'method call' child have incorrect indentation level 20, expected level should be one of the following: 24, 28. 359
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 16, expected level should be one of the following: 20, 24. 360
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 12, expected level should be one of the following: 16, 20. 361
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 12, expected level should be one of the following: 16, 20. 363
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 364
 Warning indentation Indentation 'method call' child have incorrect indentation level 16, expected level should be one of the following: 20, 24. 365
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be one of the following: 20, 24. 365
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 12, expected level should be one of the following: 16, 20. 366
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 371
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. 377
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 377
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 382
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 382
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 383
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 383
 Warning sizes LineLength Line is longer than 120 characters (found 125). 395
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 440
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 449
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 449
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 465
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 465
 Warning sizes LineLength Line is longer than 120 characters (found 123). 466