Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
23 0 254 0

Files

File  I  W  E
org/opendaylight/bgpcep/bgp/topology/provider/AbstractReachabilityTopologyBuilder.java 0 6 0
org/opendaylight/bgpcep/bgp/topology/provider/AbstractTopologyBuilder.java 0 51 0
org/opendaylight/bgpcep/bgp/topology/provider/Ipv4ReachabilityTopologyBuilder.java 0 4 0
org/opendaylight/bgpcep/bgp/topology/provider/Ipv6ReachabilityTopologyBuilder.java 0 4 0
org/opendaylight/bgpcep/bgp/topology/provider/LinkstateTopologyBuilder.java 0 97 0
org/opendaylight/bgpcep/bgp/topology/provider/LinkstateTopologyBuilderTest.java 0 31 0
org/opendaylight/bgpcep/bgp/topology/provider/NetworkTopologyConfigFileProcessor.java 0 1 0
org/opendaylight/bgpcep/bgp/topology/provider/NetworkTopologyConfigFileProcessorTest.java 0 3 0
org/opendaylight/bgpcep/bgp/topology/provider/UriBuilder.java 0 7 0
org/opendaylight/bgpcep/bgp/topology/provider/UriBuilderTest.java 0 6 0
org/opendaylight/bgpcep/bgp/topology/provider/config/AbstractBgpTopologyProvider.java 0 10 0
org/opendaylight/bgpcep/bgp/topology/provider/config/BackwardsCssTopologyProvider.java 0 5 0
org/opendaylight/bgpcep/bgp/topology/provider/config/BgpTopologyDeployerImpl.java 0 24 0
org/opendaylight/bgpcep/bgp/topology/provider/config/Ipv4TopologyProvider.java 0 1 0
org/opendaylight/bgpcep/bgp/topology/provider/config/Ipv6TopologyProvider.java 0 1 0
org/opendaylight/bgpcep/bgp/topology/provider/config/LinkstateTopologyProvider.java 0 1 0
org/opendaylight/bgpcep/bgp/topology/provider/config/TopologyReferenceSingletonServiceImpl.java 0 2 0

Rules

Category Rule Violations Severity
coding IllegalCatch 3  Warning
OverloadMethodsDeclarationOrder 4  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "4"
  • caseIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
76  Warning
javadoc JavadocParagraph
  • allowNewlineParagraph: "false"
1  Warning
JavadocStyle
  • tokens: "ANNOTATION_DEF, ANNOTATION_FIELD_DEF, CLASS_DEF, CTOR_DEF, ENUM_CONSTANT_DEF, ENUM_DEF, INTERFACE_DEF, METHOD_DEF, VARIABLE_DEF"
  • checkEmptyJavadoc: "true"
9  Warning
NonEmptyAtclauseDescription 2  Warning
modifier ModifierOrder 1  Warning
RedundantModifier 7  Warning
naming LocalVariableName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
1  Warning
ParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
11  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
130  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"
1  Warning

Details

org/opendaylight/bgpcep/bgp/topology/provider/AbstractReachabilityTopologyBuilder.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 52
 Warning javadoc JavadocStyle Javadoc has empty description section. 52
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 97
 Warning sizes LineLength Line is longer than 120 characters (found 137). 116
 Warning modifier RedundantModifier Redundant 'final' modifier. 126
 Warning modifier RedundantModifier Redundant 'final' modifier. 128

org/opendaylight/bgpcep/bgp/topology/provider/AbstractTopologyBuilder.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 122). 95
 Warning sizes LineLength Line is longer than 120 characters (found 139). 101
 Warning sizes LineLength Line is longer than 120 characters (found 138). 105
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 111
 Warning javadoc JavadocStyle First sentence should end with a period. 111
 Warning sizes LineLength Line is longer than 120 characters (found 162). 115
 Warning sizes LineLength Line is longer than 120 characters (found 173). 116
 Warning sizes LineLength Line is longer than 120 characters (found 128). 117
 Warning sizes LineLength Line is longer than 120 characters (found 144). 120
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 123
 Warning javadoc JavadocStyle First sentence should end with a period. 123
 Warning modifier RedundantModifier Redundant 'final' modifier. 126
 Warning coding IllegalCatch Catching 'RuntimeException' is not allowed. 177
 Warning sizes LineLength Line is longer than 120 characters (found 145). 178
 Warning sizes LineLength Line is longer than 120 characters (found 122). 180
 Warning sizes LineLength Line is longer than 120 characters (found 138). 189
 Warning sizes LineLength Line is longer than 120 characters (found 138). 190
 Warning sizes LineLength Line is longer than 120 characters (found 139). 193
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 202
 Warning sizes LineLength Line is longer than 120 characters (found 125). 203
 Warning sizes LineLength Line is longer than 120 characters (found 144). 204
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 213
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 214
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 215
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 216
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 217
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 16. 218
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 219
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 16. 220
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 221
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 222
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 223
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 224
 Warning sizes LineLength Line is longer than 120 characters (found 127). 232
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 241
 Warning sizes LineLength Line is longer than 120 characters (found 132). 242
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 250
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 264
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 273
 Warning javadoc JavadocStyle First sentence should end with a period. 273
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 282
 Warning javadoc JavadocStyle First sentence should end with a period. 282
 Warning sizes LineLength Line is longer than 120 characters (found 129). 297
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 303
 Warning javadoc JavadocStyle First sentence should end with a period. 303
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 344
 Warning sizes LineLength Line is longer than 120 characters (found 154). 354
 Warning sizes LineLength Line is longer than 120 characters (found 136). 374
 Warning sizes LineLength Line is longer than 120 characters (found 151). 377
 Warning sizes LineLength Line is longer than 120 characters (found 162). 381
 Warning sizes LineLength Line is longer than 120 characters (found 161). 382

org/opendaylight/bgpcep/bgp/topology/provider/Ipv4ReachabilityTopologyBuilder.java

Severity Category Rule Message Line
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 8. 29
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 8. 31
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 8. 32
 Warning sizes LineLength Line is longer than 120 characters (found 140). 36

org/opendaylight/bgpcep/bgp/topology/provider/Ipv6ReachabilityTopologyBuilder.java

Severity Category Rule Message Line
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 8. 29
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 8. 31
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 8. 32
 Warning sizes LineLength Line is longer than 120 characters (found 140). 36

org/opendaylight/bgpcep/bgp/topology/provider/LinkstateTopologyBuilder.java

Severity Category Rule Message Line
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 8. 129
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 8. 131
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 8. 132
 Warning javadoc JavadocStyle First sentence should end with a period. 185
 Warning sizes LineLength Line is longer than 120 characters (found 140). 206
 Warning sizes LineLength Line is longer than 120 characters (found 140). 216
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 12. 225
 Warning indentation Indentation 'if' have incorrect indentation level 20, expected level should be 16. 226
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 20. 227
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 20. 228
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 20. 229
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 20, expected level should be 16. 230
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 16. 232
 Warning sizes LineLength Line is longer than 120 characters (found 144). 232
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 12. 233
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 12. 234
 Warning naming ParameterName Parameter name 'p' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 258
 Warning sizes LineLength Line is longer than 120 characters (found 133). 284
 Warning sizes LineLength Line is longer than 120 characters (found 152). 285
 Warning sizes LineLength Line is longer than 120 characters (found 121). 289
 Warning sizes LineLength Line is longer than 120 characters (found 151). 290
 Warning sizes LineLength Line is longer than 120 characters (found 129). 299
 Warning sizes LineLength Line is longer than 120 characters (found 138). 304
 Warning sizes LineLength Line is longer than 120 characters (found 122). 330
 Warning sizes LineLength Line is longer than 120 characters (found 134). 364
 Warning sizes LineLength Line is longer than 120 characters (found 132). 377
 Warning sizes LineLength Line is longer than 120 characters (found 136). 385
 Warning sizes LineLength Line is longer than 120 characters (found 151). 398
 Warning sizes LineLength Line is longer than 120 characters (found 140). 401
 Warning sizes LineLength Line is longer than 120 characters (found 145). 409
 Warning sizes LineLength Line is longer than 120 characters (found 307). 411
 Warning sizes LineLength Line is longer than 120 characters (found 157). 444
 Warning sizes LineLength Line is longer than 120 characters (found 137). 448
 Warning sizes LineLength Line is longer than 120 characters (found 291). 450
 Warning sizes LineLength Line is longer than 120 characters (found 149). 483
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 513
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 514
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 515
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 516
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 517
 Warning sizes LineLength Line is longer than 120 characters (found 133). 518
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 520
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 521
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 522
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 523
 Warning sizes LineLength Line is longer than 120 characters (found 138). 523
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 525
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 526
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 527
 Warning naming ParameterName Parameter name 'l' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 532
 Warning sizes LineLength Line is longer than 120 characters (found 140). 598
 Warning sizes LineLength Line is longer than 120 characters (found 123). 615
 Warning naming ParameterName Parameter name 'l' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 623
 Warning sizes LineLength Line is longer than 120 characters (found 129). 629
 Warning sizes LineLength Line is longer than 120 characters (found 130). 630
 Warning sizes LineLength Line is longer than 120 characters (found 145). 641
 Warning sizes LineLength Line is longer than 120 characters (found 307). 643
 Warning sizes LineLength Line is longer than 120 characters (found 122). 664
 Warning sizes LineLength Line is longer than 120 characters (found 157). 680
 Warning sizes LineLength Line is longer than 120 characters (found 137). 688
 Warning sizes LineLength Line is longer than 120 characters (found 291). 690
 Warning sizes LineLength Line is longer than 120 characters (found 149). 720
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '510'. 724
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 727
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 728
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 729
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 730
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 731
 Warning sizes LineLength Line is longer than 120 characters (found 133). 732
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 734
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 735
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 736
 Warning sizes LineLength Line is longer than 120 characters (found 138). 736
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 738
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 739
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 740
 Warning naming ParameterName Parameter name 'n' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 745
 Warning naming ParameterName Parameter name 'n' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 794
 Warning sizes LineLength Line is longer than 120 characters (found 122). 805
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '724'. 805
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 807
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 808
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 809
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 810
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 811
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 16. 812
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 813
 Warning sizes LineLength Line is longer than 120 characters (found 153). 816
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 16. 817
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 818
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 819
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 820
 Warning naming ParameterName Parameter name 'p' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 825
 Warning sizes LineLength Line is longer than 120 characters (found 143). 871
 Warning naming ParameterName Parameter name 'p' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 876
 Warning sizes LineLength Line is longer than 120 characters (found 143). 882
 Warning sizes LineLength Line is longer than 120 characters (found 136). 899

org/opendaylight/bgpcep/bgp/topology/provider/LinkstateTopologyBuilderTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 191). 145
 Warning sizes LineLength Line is longer than 120 characters (found 217). 146
 Warning sizes LineLength Line is longer than 120 characters (found 124). 163
 Warning sizes LineLength Line is longer than 120 characters (found 122). 164
 Warning sizes LineLength Line is longer than 120 characters (found 132). 165
 Warning sizes LineLength Line is longer than 120 characters (found 155). 166
 Warning sizes LineLength Line is longer than 120 characters (found 145). 179
 Warning sizes LineLength Line is longer than 120 characters (found 146). 184
 Warning sizes LineLength Line is longer than 120 characters (found 155). 185
 Warning sizes LineLength Line is longer than 120 characters (found 125). 194
 Warning sizes LineLength Line is longer than 120 characters (found 234). 223
 Warning sizes LineLength Line is longer than 120 characters (found 125). 230
 Warning sizes LineLength Line is longer than 120 characters (found 139). 247
 Warning sizes LineLength Line is longer than 120 characters (found 226). 253
 Warning sizes LineLength Line is longer than 120 characters (found 226). 254
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 261
 Warning javadoc JavadocStyle First sentence should end with a period. 261
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 264
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 273
 Warning sizes LineLength Line is longer than 120 characters (found 135). 316
 Warning sizes LineLength Line is longer than 120 characters (found 416). 345
 Warning sizes LineLength Line is longer than 120 characters (found 176). 348
 Warning sizes LineLength Line is longer than 120 characters (found 148). 351
 Warning sizes LineLength Line is longer than 120 characters (found 161). 357
 Warning sizes LineLength Line is longer than 120 characters (found 148). 359
 Warning sizes LineLength Line is longer than 120 characters (found 333). 363
 Warning sizes LineLength Line is longer than 120 characters (found 159). 370
 Warning sizes LineLength Line is longer than 120 characters (found 273). 371
 Warning sizes LineLength Line is longer than 120 characters (found 149). 377
 Warning sizes LineLength Line is longer than 120 characters (found 167). 378
 Warning sizes LineLength Line is longer than 120 characters (found 226). 381

org/opendaylight/bgpcep/bgp/topology/provider/NetworkTopologyConfigFileProcessor.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 139). 65

org/opendaylight/bgpcep/bgp/topology/provider/NetworkTopologyConfigFileProcessorTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 140). 36
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 36
 Warning sizes LineLength Line is longer than 120 characters (found 137). 80

org/opendaylight/bgpcep/bgp/topology/provider/UriBuilder.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 133). 47
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 84
 Warning whitespace OperatorWrap '+' should be on a new line. 114
 Warning sizes LineLength Line is longer than 120 characters (found 124). 124
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '57'. 128
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 149
 Warning javadoc JavadocStyle First sentence should end with a period. 149

org/opendaylight/bgpcep/bgp/topology/provider/UriBuilderTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 152). 38
 Warning sizes LineLength Line is longer than 120 characters (found 127). 53
 Warning sizes LineLength Line is longer than 120 characters (found 124). 55
 Warning sizes LineLength Line is longer than 120 characters (found 134). 58
 Warning sizes LineLength Line is longer than 120 characters (found 135). 63
 Warning sizes LineLength Line is longer than 120 characters (found 137). 67

org/opendaylight/bgpcep/bgp/topology/provider/config/AbstractBgpTopologyProvider.java

Severity Category Rule Message Line
 Warning modifier RedundantModifier Redundant 'public' modifier. 43
 Warning sizes LineLength Line is longer than 120 characters (found 121). 63
 Warning sizes LineLength Line is longer than 120 characters (found 133). 86
 Warning sizes LineLength Line is longer than 120 characters (found 190). 87
 Warning sizes LineLength Line is longer than 120 characters (found 138). 88
 Warning sizes LineLength Line is longer than 120 characters (found 128). 92
 Warning modifier RedundantModifier Redundant 'final' modifier. 92
 Warning modifier RedundantModifier Redundant 'final' modifier. 92
 Warning modifier RedundantModifier Redundant 'final' modifier. 93
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '75'. 95

org/opendaylight/bgpcep/bgp/topology/provider/config/BackwardsCssTopologyProvider.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 177). 37
 Warning sizes LineLength Line is longer than 120 characters (found 146). 42
 Warning sizes LineLength Line is longer than 120 characters (found 126). 46
 Warning sizes LineLength Line is longer than 120 characters (found 126). 51
 Warning sizes LineLength Line is longer than 120 characters (found 132). 64

org/opendaylight/bgpcep/bgp/topology/provider/config/BgpTopologyDeployerImpl.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 133). 48
 Warning sizes LineLength Line is longer than 120 characters (found 140). 51
 Warning sizes LineLength Line is longer than 120 characters (found 151). 62
 Warning sizes LineLength Line is longer than 120 characters (found 199). 67
 Warning sizes LineLength Line is longer than 120 characters (found 185). 81
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 83
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 84
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 85
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 86
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 87
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 88
 Warning sizes LineLength Line is longer than 120 characters (found 122). 88
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 89
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 90
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 91
 Warning sizes LineLength Line is longer than 120 characters (found 122). 91
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 92
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 93
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 94
 Warning sizes LineLength Line is longer than 120 characters (found 141). 120
 Warning sizes LineLength Line is longer than 120 characters (found 170). 121
 Warning sizes LineLength Line is longer than 120 characters (found 134). 122
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 128
 Warning sizes LineLength Line is longer than 120 characters (found 121). 148

org/opendaylight/bgpcep/bgp/topology/provider/config/Ipv4TopologyProvider.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 150). 32

org/opendaylight/bgpcep/bgp/topology/provider/config/Ipv6TopologyProvider.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 150). 26

org/opendaylight/bgpcep/bgp/topology/provider/config/LinkstateTopologyProvider.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 150). 26

org/opendaylight/bgpcep/bgp/topology/provider/config/TopologyReferenceSingletonServiceImpl.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 127). 32
 Warning sizes LineLength Line is longer than 120 characters (found 124). 67