Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
69 0 693 0

Files

File  I  W  E
org/opendaylight/protocol/bgp/flowspec/AbstractFlowspecNlriParser.java 0 39 0
org/opendaylight/protocol/bgp/flowspec/AbstractFlowspecRIBSupport.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/ActivatorTest.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/BGPActivator.java 0 28 0
org/opendaylight/protocol/bgp/flowspec/FlowspecActivator.java 0 35 0
org/opendaylight/protocol/bgp/flowspec/FlowspecIpv4RIBSupport.java 0 1 0
org/opendaylight/protocol/bgp/flowspec/FlowspecIpv4RIBSupportTest.java 0 14 0
org/opendaylight/protocol/bgp/flowspec/FlowspecIpv6RIBSupport.java 0 1 0
org/opendaylight/protocol/bgp/flowspec/FlowspecIpv6RIBSupportTest.java 0 16 0
org/opendaylight/protocol/bgp/flowspec/FlowspecL3vpnIpv4NlriParserTest.java 0 108 0
org/opendaylight/protocol/bgp/flowspec/FlowspecL3vpnIpv4RIBSupportTest.java 0 25 0
org/opendaylight/protocol/bgp/flowspec/FlowspecL3vpnIpv6NlriParserTest.java 0 56 0
org/opendaylight/protocol/bgp/flowspec/FlowspecL3vpnIpv6RIBSupportTest.java 0 22 0
org/opendaylight/protocol/bgp/flowspec/RIBActivator.java 0 4 0
org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecExtensionProviderContext.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecIpv4NlriParser.java 0 8 0
org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecIpv4NlriParserTest.java 0 112 0
org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecIpv6NlriParser.java 0 8 0
org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecIpv6NlriParserTest.java 0 55 0
org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecTypeRegistry.java 0 2 0
org/opendaylight/protocol/bgp/flowspec/TableTypeActivator.java 0 5 0
org/opendaylight/protocol/bgp/flowspec/TableTypeActivatorTest.java 0 4 0
org/opendaylight/protocol/bgp/flowspec/extended/communities/FSExtendedCommunitiesTest.java 0 52 0
org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectAsFourOctetEcHandler.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectAsTwoOctetEcHandler.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectIpNextHopEcHandler.java 0 4 0
org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectIpv4EcHandler.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectIpv6EcHandler.java 0 1 0
org/opendaylight/protocol/bgp/flowspec/extended/communities/TrafficActionEcHandler.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/extended/communities/TrafficMarkingEcHandler.java 0 4 0
org/opendaylight/protocol/bgp/flowspec/extended/communities/TrafficRateEcHandler.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/handlers/AbstractFSFragmentHandler.java 0 1 0
org/opendaylight/protocol/bgp/flowspec/handlers/AbstractNumericOperandParser.java 0 2 0
org/opendaylight/protocol/bgp/flowspec/handlers/FSIpv4DestinationPrefixHandler.java 0 1 0
org/opendaylight/protocol/bgp/flowspec/handlers/FSIpv4FragmentHandler.java 0 1 0
org/opendaylight/protocol/bgp/flowspec/handlers/FSIpv6DestinationPrefixHandler.java 0 1 0
org/opendaylight/protocol/bgp/flowspec/handlers/NumericOperandParserTest.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/ipv4/FlowspecIpv4NlriParserHelper.java 0 10 0
org/opendaylight/protocol/bgp/flowspec/ipv6/FlowspecIpv6NlriParserHelper.java 0 15 0
org/opendaylight/protocol/bgp/flowspec/l3vpn/AbstractFlowspecL3vpnNlriParser.java 0 5 0
org/opendaylight/protocol/bgp/flowspec/l3vpn/AbstractFlowspecL3vpnRIBSupport.java 0 3 0
org/opendaylight/protocol/bgp/flowspec/l3vpn/ipv4/FlowspecL3vpnIpv4NlriParser.java 0 10 0
org/opendaylight/protocol/bgp/flowspec/l3vpn/ipv4/FlowspecL3vpnIpv4RIBSupport.java 0 2 0
org/opendaylight/protocol/bgp/flowspec/l3vpn/ipv6/FlowspecL3vpnIpv6NlriParser.java 0 10 0
org/opendaylight/protocol/bgp/flowspec/l3vpn/ipv6/FlowspecL3vpnIpv6RIBSupport.java 0 1 0

Rules

Category Rule Violations Severity
coding IllegalCatch 1  Warning
OverloadMethodsDeclarationOrder 5  Warning
imports CustomImportOrder
  • thirdPartyPackageRegExp: ".*"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
6  Warning
UnusedImports 1  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "4"
  • caseIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
8  Warning
javadoc JavadocStyle
  • tokens: "ANNOTATION_DEF, ANNOTATION_FIELD_DEF, CLASS_DEF, CTOR_DEF, ENUM_CONSTANT_DEF, ENUM_DEF, INTERFACE_DEF, METHOD_DEF, VARIABLE_DEF"
  • checkEmptyJavadoc: "true"
8  Warning
NonEmptyAtclauseDescription 5  Warning
misc ArrayTypeStyle 1  Warning
modifier ModifierOrder 4  Warning
RedundantModifier 8  Warning
naming AbbreviationAsWordInName
  • ignoreFinal: "false"
  • allowedAbbreviationLength: "4"
4  Warning
MemberName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
4  Warning
ParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
2  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
617  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
  • tokens: "IMPORT, CLASS_DEF, INTERFACE_DEF, ENUM_DEF, STATIC_INIT, INSTANCE_INIT, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"
2  Warning
ParenPad 1  Warning
SeparatorWrap
  • tokens: "COMMA"
  • option: "EOL"
7  Warning
SeparatorWrap
  • tokens: "DOT"
  • option: "nl"
7  Warning
WhitespaceAround
  • allowEmptyConstructors: "true"
  • allowEmptyMethods: "true"
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
1  Warning

Details

org/opendaylight/protocol/bgp/flowspec/AbstractFlowspecNlriParser.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 150). 107
 Warning sizes LineLength Line is longer than 120 characters (found 142). 108
 Warning sizes LineLength Line is longer than 120 characters (found 148). 128
 Warning sizes LineLength Line is longer than 120 characters (found 154). 130
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 164
 Warning javadoc JavadocStyle First sentence should end with a period. 164
 Warning sizes LineLength Line is longer than 120 characters (found 134). 171
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 173
 Warning javadoc JavadocStyle First sentence should end with a period. 173
 Warning sizes LineLength Line is longer than 120 characters (found 141). 180
 Warning sizes LineLength Line is longer than 120 characters (found 123). 184
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 231
 Warning sizes LineLength Line is longer than 120 characters (found 138). 234
 Warning sizes LineLength Line is longer than 120 characters (found 125). 240
 Warning sizes LineLength Line is longer than 120 characters (found 143). 273
 Warning sizes LineLength Line is longer than 120 characters (found 180). 275
 Warning sizes LineLength Line is longer than 120 characters (found 167). 277
 Warning sizes LineLength Line is longer than 120 characters (found 151). 279
 Warning sizes LineLength Line is longer than 120 characters (found 151). 281
 Warning sizes LineLength Line is longer than 120 characters (found 157). 283
 Warning sizes LineLength Line is longer than 120 characters (found 176). 285
 Warning sizes LineLength Line is longer than 120 characters (found 149). 287
 Warning sizes LineLength Line is longer than 120 characters (found 158). 289
 Warning sizes LineLength Line is longer than 120 characters (found 124). 321
 Warning sizes LineLength Line is longer than 120 characters (found 126). 340
 Warning sizes LineLength Line is longer than 120 characters (found 128). 416
 Warning sizes LineLength Line is longer than 120 characters (found 127). 435
 Warning sizes LineLength Line is longer than 120 characters (found 139). 467
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '249'. 470
 Warning sizes LineLength Line is longer than 120 characters (found 126). 486
 Warning sizes LineLength Line is longer than 120 characters (found 122). 576
 Warning sizes LineLength Line is longer than 120 characters (found 138). 594
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 611
 Warning javadoc JavadocStyle First sentence should end with a period. 611
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '209'. 617
 Warning sizes LineLength Line is longer than 120 characters (found 160). 623
 Warning sizes LineLength Line is longer than 120 characters (found 161). 639
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '622'. 647
 Warning sizes LineLength Line is longer than 120 characters (found 162). 648

org/opendaylight/protocol/bgp/flowspec/AbstractFlowspecRIBSupport.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 124). 35
 Warning sizes LineLength Line is longer than 120 characters (found 131). 101
 Warning sizes LineLength Line is longer than 120 characters (found 160). 103

org/opendaylight/protocol/bgp/flowspec/ActivatorTest.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'org.junit.Test' should be separated from previous import group. 12
 Warning sizes LineLength Line is longer than 120 characters (found 136). 31
 Warning sizes LineLength Line is longer than 120 characters (found 145). 32

org/opendaylight/protocol/bgp/flowspec/BGPActivator.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 123). 64
 Warning sizes LineLength Line is longer than 120 characters (found 236). 69
 Warning sizes LineLength Line is longer than 120 characters (found 236). 70
 Warning sizes LineLength Line is longer than 120 characters (found 143). 73
 Warning indentation Indentation 'method call rparen' have incorrect indentation level 16, expected level should be 8. 75
 Warning sizes LineLength Line is longer than 120 characters (found 143). 78
 Warning indentation Indentation 'method call rparen' have incorrect indentation level 16, expected level should be 8. 80
 Warning sizes LineLength Line is longer than 120 characters (found 243). 84
 Warning sizes LineLength Line is longer than 120 characters (found 243). 85
 Warning sizes LineLength Line is longer than 120 characters (found 153). 88
 Warning indentation Indentation 'method call rparen' have incorrect indentation level 16, expected level should be 8. 90
 Warning sizes LineLength Line is longer than 120 characters (found 153). 93
 Warning indentation Indentation 'method call rparen' have incorrect indentation level 16, expected level should be 8. 95
 Warning sizes LineLength Line is longer than 120 characters (found 142). 100
 Warning sizes LineLength Line is longer than 120 characters (found 151). 104
 Warning sizes LineLength Line is longer than 120 characters (found 126). 105
 Warning sizes LineLength Line is longer than 120 characters (found 154). 108
 Warning sizes LineLength Line is longer than 120 characters (found 128). 109
 Warning sizes LineLength Line is longer than 120 characters (found 151). 112
 Warning sizes LineLength Line is longer than 120 characters (found 124). 113
 Warning sizes LineLength Line is longer than 120 characters (found 154). 116
 Warning sizes LineLength Line is longer than 120 characters (found 126). 117
 Warning sizes LineLength Line is longer than 120 characters (found 142). 120
 Warning sizes LineLength Line is longer than 120 characters (found 121). 121
 Warning sizes LineLength Line is longer than 120 characters (found 148). 124
 Warning sizes LineLength Line is longer than 120 characters (found 124). 125
 Warning sizes LineLength Line is longer than 120 characters (found 148). 128
 Warning sizes LineLength Line is longer than 120 characters (found 124). 129

org/opendaylight/protocol/bgp/flowspec/FlowspecActivator.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 73
 Warning javadoc JavadocStyle First sentence should end with a period. 73
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 76
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 77
 Warning sizes LineLength Line is longer than 120 characters (found 153). 90
 Warning sizes LineLength Line is longer than 120 characters (found 135). 91
 Warning sizes LineLength Line is longer than 120 characters (found 138). 94
 Warning sizes LineLength Line is longer than 120 characters (found 125). 95
 Warning sizes LineLength Line is longer than 120 characters (found 132). 98
 Warning sizes LineLength Line is longer than 120 characters (found 121). 99
 Warning sizes LineLength Line is longer than 120 characters (found 132). 102
 Warning sizes LineLength Line is longer than 120 characters (found 121). 103
 Warning sizes LineLength Line is longer than 120 characters (found 132). 106
 Warning sizes LineLength Line is longer than 120 characters (found 121). 107
 Warning sizes LineLength Line is longer than 120 characters (found 144). 110
 Warning sizes LineLength Line is longer than 120 characters (found 129). 111
 Warning sizes LineLength Line is longer than 120 characters (found 163). 125
 Warning sizes LineLength Line is longer than 120 characters (found 139). 126
 Warning sizes LineLength Line is longer than 120 characters (found 148). 129
 Warning sizes LineLength Line is longer than 120 characters (found 129). 130
 Warning sizes LineLength Line is longer than 120 characters (found 138). 133
 Warning sizes LineLength Line is longer than 120 characters (found 125). 134
 Warning sizes LineLength Line is longer than 120 characters (found 135). 137
 Warning sizes LineLength Line is longer than 120 characters (found 121). 138
 Warning sizes LineLength Line is longer than 120 characters (found 168). 148
 Warning sizes LineLength Line is longer than 120 characters (found 143). 149
 Warning sizes LineLength Line is longer than 120 characters (found 148). 152
 Warning sizes LineLength Line is longer than 120 characters (found 133). 153
 Warning sizes LineLength Line is longer than 120 characters (found 142). 156
 Warning sizes LineLength Line is longer than 120 characters (found 125). 157
 Warning sizes LineLength Line is longer than 120 characters (found 135). 160
 Warning sizes LineLength Line is longer than 120 characters (found 121). 161
 Warning sizes LineLength Line is longer than 120 characters (found 139). 164
 Warning sizes LineLength Line is longer than 120 characters (found 123). 165
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 176

org/opendaylight/protocol/bgp/flowspec/FlowspecIpv4RIBSupport.java

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

org/opendaylight/protocol/bgp/flowspec/FlowspecIpv4RIBSupportTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 156). 63
 Warning sizes LineLength Line is longer than 120 characters (found 138). 64
 Warning sizes LineLength Line is longer than 120 characters (found 140). 65
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 65
 Warning sizes LineLength Line is longer than 120 characters (found 141). 66
 Warning sizes LineLength Line is longer than 120 characters (found 207). 68
 Warning sizes LineLength Line is longer than 120 characters (found 145). 69
 Warning sizes LineLength Line is longer than 120 characters (found 150). 80
 Warning sizes LineLength Line is longer than 120 characters (found 131). 97
 Warning sizes LineLength Line is longer than 120 characters (found 152). 127
 Warning sizes LineLength Line is longer than 120 characters (found 129). 157
 Warning sizes LineLength Line is longer than 120 characters (found 149). 168
 Warning sizes LineLength Line is longer than 120 characters (found 130). 190
 Warning sizes LineLength Line is longer than 120 characters (found 130). 193

org/opendaylight/protocol/bgp/flowspec/FlowspecIpv6RIBSupport.java

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

org/opendaylight/protocol/bgp/flowspec/FlowspecIpv6RIBSupportTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 170). 62
 Warning sizes LineLength Line is longer than 120 characters (found 138). 63
 Warning sizes LineLength Line is longer than 120 characters (found 140). 64
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 64
 Warning sizes LineLength Line is longer than 120 characters (found 149). 65
 Warning sizes LineLength Line is longer than 120 characters (found 211). 67
 Warning sizes LineLength Line is longer than 120 characters (found 149). 68
 Warning whitespace EmptyLineSeparator 'STATIC_INIT' should be separated from previous statement. 70
 Warning sizes LineLength Line is longer than 120 characters (found 150). 79
 Warning sizes LineLength Line is longer than 120 characters (found 131). 96
 Warning sizes LineLength Line is longer than 120 characters (found 152). 126
 Warning whitespace SeparatorWrap '.' should be on a new line. 147
 Warning sizes LineLength Line is longer than 120 characters (found 129). 157
 Warning sizes LineLength Line is longer than 120 characters (found 149). 168
 Warning sizes LineLength Line is longer than 120 characters (found 130). 190
 Warning sizes LineLength Line is longer than 120 characters (found 142). 193

org/opendaylight/protocol/bgp/flowspec/FlowspecL3vpnIpv4NlriParserTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 166). 105
 Warning naming AbbreviationAsWordInName Abbreviation in name 'FS_PARSER' must contain no more than '4' capital letters. 165
 Warning sizes LineLength Line is longer than 120 characters (found 243). 165
 Warning naming MemberName Member name 'FS_PARSER' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 165
 Warning sizes LineLength Line is longer than 120 characters (found 151). 180
 Warning sizes LineLength Line is longer than 120 characters (found 130). 183
 Warning sizes LineLength Line is longer than 120 characters (found 236). 203
 Warning sizes LineLength Line is longer than 120 characters (found 300). 210
 Warning sizes LineLength Line is longer than 120 characters (found 216). 219
 Warning sizes LineLength Line is longer than 120 characters (found 203). 230
 Warning sizes LineLength Line is longer than 120 characters (found 342). 233
 Warning sizes LineLength Line is longer than 120 characters (found 168). 257
 Warning sizes LineLength Line is longer than 120 characters (found 176). 262
 Warning sizes LineLength Line is longer than 120 characters (found 181). 267
 Warning sizes LineLength Line is longer than 120 characters (found 124). 268
 Warning sizes LineLength Line is longer than 120 characters (found 151). 278
 Warning sizes LineLength Line is longer than 120 characters (found 130). 281
 Warning sizes LineLength Line is longer than 120 characters (found 236). 301
 Warning sizes LineLength Line is longer than 120 characters (found 300). 308
 Warning sizes LineLength Line is longer than 120 characters (found 216). 317
 Warning sizes LineLength Line is longer than 120 characters (found 203). 329
 Warning sizes LineLength Line is longer than 120 characters (found 342). 332
 Warning sizes LineLength Line is longer than 120 characters (found 153). 336
 Warning sizes LineLength Line is longer than 120 characters (found 236). 374
 Warning sizes LineLength Line is longer than 120 characters (found 294). 381
 Warning sizes LineLength Line is longer than 120 characters (found 213). 389
 Warning sizes LineLength Line is longer than 120 characters (found 173). 403
 Warning sizes LineLength Line is longer than 120 characters (found 347). 406
 Warning sizes LineLength Line is longer than 120 characters (found 193). 411
 Warning sizes LineLength Line is longer than 120 characters (found 171). 416
 Warning sizes LineLength Line is longer than 120 characters (found 148). 421
 Warning sizes LineLength Line is longer than 120 characters (found 154). 427
 Warning sizes LineLength Line is longer than 120 characters (found 160). 433
 Warning sizes LineLength Line is longer than 120 characters (found 160). 439
 Warning sizes LineLength Line is longer than 120 characters (found 144). 444
 Warning sizes LineLength Line is longer than 120 characters (found 121). 445
 Warning sizes LineLength Line is longer than 120 characters (found 236). 486
 Warning sizes LineLength Line is longer than 120 characters (found 294). 493
 Warning sizes LineLength Line is longer than 120 characters (found 213). 501
 Warning sizes LineLength Line is longer than 120 characters (found 173). 516
 Warning sizes LineLength Line is longer than 120 characters (found 347). 519
 Warning sizes LineLength Line is longer than 120 characters (found 122). 525
 Warning sizes LineLength Line is longer than 120 characters (found 179). 533
 Warning sizes LineLength Line is longer than 120 characters (found 132). 536
 Warning sizes LineLength Line is longer than 120 characters (found 122). 544
 Warning sizes LineLength Line is longer than 120 characters (found 181). 552
 Warning sizes LineLength Line is longer than 120 characters (found 122). 555
 Warning sizes LineLength Line is longer than 120 characters (found 122). 563
 Warning sizes LineLength Line is longer than 120 characters (found 230). 573
 Warning sizes LineLength Line is longer than 120 characters (found 160). 574
 Warning sizes LineLength Line is longer than 120 characters (found 189). 576
 Warning sizes LineLength Line is longer than 120 characters (found 160). 577
 Warning sizes LineLength Line is longer than 120 characters (found 273). 579
 Warning sizes LineLength Line is longer than 120 characters (found 160). 580
 Warning sizes LineLength Line is longer than 120 characters (found 126). 585
 Warning sizes LineLength Line is longer than 120 characters (found 127). 586
 Warning sizes LineLength Line is longer than 120 characters (found 136). 587
 Warning sizes LineLength Line is longer than 120 characters (found 122). 595
 Warning sizes LineLength Line is longer than 120 characters (found 276). 605
 Warning sizes LineLength Line is longer than 120 characters (found 152). 606
 Warning sizes LineLength Line is longer than 120 characters (found 195). 610
 Warning sizes LineLength Line is longer than 120 characters (found 122). 618
 Warning sizes LineLength Line is longer than 120 characters (found 121). 626
 Warning sizes LineLength Line is longer than 120 characters (found 123). 627
 Warning sizes LineLength Line is longer than 120 characters (found 235). 628
 Warning sizes LineLength Line is longer than 120 characters (found 152). 629
 Warning sizes LineLength Line is longer than 120 characters (found 230). 632
 Warning sizes LineLength Line is longer than 120 characters (found 122). 640
 Warning sizes LineLength Line is longer than 120 characters (found 123). 648
 Warning sizes LineLength Line is longer than 120 characters (found 124). 649
 Warning sizes LineLength Line is longer than 120 characters (found 368). 650
 Warning sizes LineLength Line is longer than 120 characters (found 153). 651
 Warning sizes LineLength Line is longer than 120 characters (found 212). 654
 Warning sizes LineLength Line is longer than 120 characters (found 122). 662
 Warning sizes LineLength Line is longer than 120 characters (found 121). 670
 Warning sizes LineLength Line is longer than 120 characters (found 124). 671
 Warning sizes LineLength Line is longer than 120 characters (found 368). 672
 Warning sizes LineLength Line is longer than 120 characters (found 159). 673
 Warning sizes LineLength Line is longer than 120 characters (found 204). 676
 Warning sizes LineLength Line is longer than 120 characters (found 122). 684
 Warning sizes LineLength Line is longer than 120 characters (found 121). 692
 Warning sizes LineLength Line is longer than 120 characters (found 124). 693
 Warning sizes LineLength Line is longer than 120 characters (found 154). 694
 Warning sizes LineLength Line is longer than 120 characters (found 159). 695
 Warning sizes LineLength Line is longer than 120 characters (found 209). 698
 Warning sizes LineLength Line is longer than 120 characters (found 122). 706
 Warning sizes LineLength Line is longer than 120 characters (found 121). 714
 Warning sizes LineLength Line is longer than 120 characters (found 124). 715
 Warning sizes LineLength Line is longer than 120 characters (found 230). 716
 Warning sizes LineLength Line is longer than 120 characters (found 151). 717
 Warning sizes LineLength Line is longer than 120 characters (found 198). 720
 Warning sizes LineLength Line is longer than 120 characters (found 122). 728
 Warning sizes LineLength Line is longer than 120 characters (found 126). 736
 Warning sizes LineLength Line is longer than 120 characters (found 124). 737
 Warning sizes LineLength Line is longer than 120 characters (found 238). 738
 Warning sizes LineLength Line is longer than 120 characters (found 152). 739
 Warning sizes LineLength Line is longer than 120 characters (found 220). 742
 Warning sizes LineLength Line is longer than 120 characters (found 122). 750
 Warning sizes LineLength Line is longer than 120 characters (found 124). 759
 Warning sizes LineLength Line is longer than 120 characters (found 279). 760
 Warning sizes LineLength Line is longer than 120 characters (found 159). 761
 Warning sizes LineLength Line is longer than 120 characters (found 212). 764
 Warning sizes LineLength Line is longer than 120 characters (found 122). 772
 Warning sizes LineLength Line is longer than 120 characters (found 124). 781
 Warning sizes LineLength Line is longer than 120 characters (found 296). 782
 Warning sizes LineLength Line is longer than 120 characters (found 323). 783
 Warning sizes LineLength Line is longer than 120 characters (found 232). 786
 Warning sizes LineLength Line is longer than 120 characters (found 122). 794

org/opendaylight/protocol/bgp/flowspec/FlowspecL3vpnIpv4RIBSupportTest.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.l3vpn.ipv4.route.FlowspecL3vpnRoute' import. Should be before 'org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.l3vpn.ipv4.routes.FlowspecL3vpnIpv4RoutesBuilder'. 34
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.l3vpn.ipv4.route.FlowspecL3vpnRouteBuilder' import. Should be before 'org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.l3vpn.ipv4.routes.FlowspecL3vpnIpv4RoutesBuilder'. 35
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.l3vpn.ipv4.route.FlowspecL3vpnRouteKey' import. Should be before 'org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.l3vpn.ipv4.routes.FlowspecL3vpnIpv4RoutesBuilder'. 36
 Warning sizes LineLength Line is longer than 120 characters (found 138). 65
 Warning sizes LineLength Line is longer than 120 characters (found 133). 66
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 66
 Warning sizes LineLength Line is longer than 120 characters (found 168). 68
 Warning sizes LineLength Line is longer than 120 characters (found 181). 69
 Warning whitespace SeparatorWrap '.' should be on a new line. 69
 Warning sizes LineLength Line is longer than 120 characters (found 216). 70
 Warning whitespace SeparatorWrap '.' should be on a new line. 70
 Warning sizes LineLength Line is longer than 120 characters (found 126). 76
 Warning sizes LineLength Line is longer than 120 characters (found 141). 90
 Warning sizes LineLength Line is longer than 120 characters (found 127). 112
 Warning sizes LineLength Line is longer than 120 characters (found 152). 121
 Warning sizes LineLength Line is longer than 120 characters (found 141). 122
 Warning sizes LineLength Line is longer than 120 characters (found 130). 144
 Warning whitespace SeparatorWrap '.' should be on a new line. 144
 Warning sizes LineLength Line is longer than 120 characters (found 159). 146
 Warning sizes LineLength Line is longer than 120 characters (found 196). 153
 Warning sizes LineLength Line is longer than 120 characters (found 129). 154
 Warning sizes LineLength Line is longer than 120 characters (found 149). 165
 Warning sizes LineLength Line is longer than 120 characters (found 130). 187
 Warning sizes LineLength Line is longer than 120 characters (found 157). 190
 Warning sizes LineLength Line is longer than 120 characters (found 134). 194

org/opendaylight/protocol/bgp/flowspec/FlowspecL3vpnIpv6NlriParserTest.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'com.google.common.collect.Lists' should be separated from previous import group. 13
 Warning naming AbbreviationAsWordInName Abbreviation in name 'FS_PARSER' must contain no more than '4' capital letters. 88
 Warning sizes LineLength Line is longer than 120 characters (found 239). 88
 Warning naming MemberName Member name 'FS_PARSER' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 88
 Warning sizes LineLength Line is longer than 120 characters (found 164). 133
 Warning sizes LineLength Line is longer than 120 characters (found 144). 137
 Warning sizes LineLength Line is longer than 120 characters (found 178). 141
 Warning sizes LineLength Line is longer than 120 characters (found 294). 151
 Warning sizes LineLength Line is longer than 120 characters (found 212). 164
 Warning sizes LineLength Line is longer than 120 characters (found 211). 176
 Warning sizes LineLength Line is longer than 120 characters (found 151). 179
 Warning sizes LineLength Line is longer than 120 characters (found 164). 188
 Warning sizes LineLength Line is longer than 120 characters (found 144). 192
 Warning sizes LineLength Line is longer than 120 characters (found 178). 196
 Warning sizes LineLength Line is longer than 120 characters (found 300). 206
 Warning sizes LineLength Line is longer than 120 characters (found 212). 218
 Warning sizes LineLength Line is longer than 120 characters (found 211). 230
 Warning sizes LineLength Line is longer than 120 characters (found 151). 233
 Warning sizes LineLength Line is longer than 120 characters (found 300). 256
 Warning sizes LineLength Line is longer than 120 characters (found 213). 267
 Warning sizes LineLength Line is longer than 120 characters (found 181). 278
 Warning sizes LineLength Line is longer than 120 characters (found 182). 282
 Warning sizes LineLength Line is longer than 120 characters (found 193). 286
 Warning sizes LineLength Line is longer than 120 characters (found 141). 292
 Warning sizes LineLength Line is longer than 120 characters (found 135). 293
 Warning sizes LineLength Line is longer than 120 characters (found 300). 317
 Warning sizes LineLength Line is longer than 120 characters (found 213). 328
 Warning sizes LineLength Line is longer than 120 characters (found 181). 340
 Warning sizes LineLength Line is longer than 120 characters (found 182). 344
 Warning sizes LineLength Line is longer than 120 characters (found 122). 349
 Warning sizes LineLength Line is longer than 120 characters (found 124). 358
 Warning sizes LineLength Line is longer than 120 characters (found 296). 359
 Warning sizes LineLength Line is longer than 120 characters (found 323). 360
 Warning sizes LineLength Line is longer than 120 characters (found 232). 363
 Warning sizes LineLength Line is longer than 120 characters (found 122). 371
 Warning sizes LineLength Line is longer than 120 characters (found 230). 381
 Warning sizes LineLength Line is longer than 120 characters (found 160). 382
 Warning sizes LineLength Line is longer than 120 characters (found 189). 384
 Warning sizes LineLength Line is longer than 120 characters (found 160). 385
 Warning sizes LineLength Line is longer than 120 characters (found 273). 387
 Warning sizes LineLength Line is longer than 120 characters (found 160). 388
 Warning sizes LineLength Line is longer than 120 characters (found 126). 393
 Warning sizes LineLength Line is longer than 120 characters (found 127). 394
 Warning sizes LineLength Line is longer than 120 characters (found 136). 395
 Warning sizes LineLength Line is longer than 120 characters (found 122). 403
 Warning sizes LineLength Line is longer than 120 characters (found 230). 413
 Warning sizes LineLength Line is longer than 120 characters (found 153). 414
 Warning sizes LineLength Line is longer than 120 characters (found 189). 416
 Warning sizes LineLength Line is longer than 120 characters (found 153). 417
 Warning sizes LineLength Line is longer than 120 characters (found 129). 423
 Warning sizes LineLength Line is longer than 120 characters (found 122). 431
 Warning sizes LineLength Line is longer than 120 characters (found 184). 439
 Warning sizes LineLength Line is longer than 120 characters (found 140). 441
 Warning sizes LineLength Line is longer than 120 characters (found 122). 449
 Warning sizes LineLength Line is longer than 120 characters (found 187). 457
 Warning sizes LineLength Line is longer than 120 characters (found 130). 459

org/opendaylight/protocol/bgp/flowspec/FlowspecL3vpnIpv6RIBSupportTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 138). 65
 Warning sizes LineLength Line is longer than 120 characters (found 133). 66
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 66
 Warning sizes LineLength Line is longer than 120 characters (found 168). 68
 Warning sizes LineLength Line is longer than 120 characters (found 181). 69
 Warning whitespace SeparatorWrap '.' should be on a new line. 69
 Warning sizes LineLength Line is longer than 120 characters (found 216). 70
 Warning whitespace SeparatorWrap '.' should be on a new line. 70
 Warning sizes LineLength Line is longer than 120 characters (found 130). 76
 Warning sizes LineLength Line is longer than 120 characters (found 141). 90
 Warning sizes LineLength Line is longer than 120 characters (found 127). 112
 Warning sizes LineLength Line is longer than 120 characters (found 152). 121
 Warning sizes LineLength Line is longer than 120 characters (found 141). 122
 Warning sizes LineLength Line is longer than 120 characters (found 130). 144
 Warning whitespace SeparatorWrap '.' should be on a new line. 144
 Warning sizes LineLength Line is longer than 120 characters (found 159). 146
 Warning sizes LineLength Line is longer than 120 characters (found 196). 153
 Warning sizes LineLength Line is longer than 120 characters (found 129). 154
 Warning sizes LineLength Line is longer than 120 characters (found 149). 165
 Warning sizes LineLength Line is longer than 120 characters (found 130). 187
 Warning sizes LineLength Line is longer than 120 characters (found 157). 190
 Warning sizes LineLength Line is longer than 120 characters (found 134). 194

org/opendaylight/protocol/bgp/flowspec/RIBActivator.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 161). 33
 Warning sizes LineLength Line is longer than 120 characters (found 161). 34
 Warning sizes LineLength Line is longer than 120 characters (found 171). 35
 Warning sizes LineLength Line is longer than 120 characters (found 171). 36

org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecExtensionProviderContext.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 17
 Warning naming ParameterName Parameter name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 28
 Warning misc ArrayTypeStyle Array brackets at illegal position. 33

org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecIpv4NlriParser.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 126). 31
 Warning sizes LineLength Line is longer than 120 characters (found 207). 33
 Warning sizes LineLength Line is longer than 120 characters (found 133). 43
 Warning sizes LineLength Line is longer than 120 characters (found 206). 45
 Warning sizes LineLength Line is longer than 120 characters (found 212). 56
 Warning sizes LineLength Line is longer than 120 characters (found 243). 57
 Warning sizes LineLength Line is longer than 120 characters (found 213). 75
 Warning sizes LineLength Line is longer than 120 characters (found 244). 76

org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecIpv4NlriParserTest.java

Severity Category Rule Message Line
 Warning imports UnusedImports Unused import - org.junit.Assert.assertTrue. 12
 Warning naming AbbreviationAsWordInName Abbreviation in name 'FS_PARSER' must contain no more than '4' capital letters. 160
 Warning sizes LineLength Line is longer than 120 characters (found 241). 160
 Warning naming MemberName Member name 'FS_PARSER' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 160
 Warning sizes LineLength Line is longer than 120 characters (found 151). 175
 Warning sizes LineLength Line is longer than 120 characters (found 130). 178
 Warning sizes LineLength Line is longer than 120 characters (found 207). 200
 Warning sizes LineLength Line is longer than 120 characters (found 234). 209
 Warning sizes LineLength Line is longer than 120 characters (found 271). 216
 Warning sizes LineLength Line is longer than 120 characters (found 203). 222
 Warning sizes LineLength Line is longer than 120 characters (found 342). 225
 Warning sizes LineLength Line is longer than 120 characters (found 138). 228
 Warning sizes LineLength Line is longer than 120 characters (found 168). 240
 Warning sizes LineLength Line is longer than 120 characters (found 176). 245
 Warning sizes LineLength Line is longer than 120 characters (found 181). 250
 Warning sizes LineLength Line is longer than 120 characters (found 124). 251
 Warning sizes LineLength Line is longer than 120 characters (found 151). 261
 Warning sizes LineLength Line is longer than 120 characters (found 130). 264
 Warning sizes LineLength Line is longer than 120 characters (found 203). 285
 Warning sizes LineLength Line is longer than 120 characters (found 234). 295
 Warning sizes LineLength Line is longer than 120 characters (found 271). 302
 Warning sizes LineLength Line is longer than 120 characters (found 203). 308
 Warning sizes LineLength Line is longer than 120 characters (found 342). 311
 Warning sizes LineLength Line is longer than 120 characters (found 153). 315
 Warning sizes LineLength Line is longer than 120 characters (found 204). 354
 Warning sizes LineLength Line is longer than 120 characters (found 234). 363
 Warning sizes LineLength Line is longer than 120 characters (found 271). 370
 Warning sizes LineLength Line is longer than 120 characters (found 173). 379
 Warning sizes LineLength Line is longer than 120 characters (found 347). 382
 Warning sizes LineLength Line is longer than 120 characters (found 193). 387
 Warning sizes LineLength Line is longer than 120 characters (found 171). 392
 Warning sizes LineLength Line is longer than 120 characters (found 148). 397
 Warning sizes LineLength Line is longer than 120 characters (found 154). 403
 Warning sizes LineLength Line is longer than 120 characters (found 160). 409
 Warning sizes LineLength Line is longer than 120 characters (found 160). 415
 Warning sizes LineLength Line is longer than 120 characters (found 144). 420
 Warning sizes LineLength Line is longer than 120 characters (found 121). 421
 Warning sizes LineLength Line is longer than 120 characters (found 204). 463
 Warning sizes LineLength Line is longer than 120 characters (found 234). 473
 Warning sizes LineLength Line is longer than 120 characters (found 271). 480
 Warning sizes LineLength Line is longer than 120 characters (found 173). 490
 Warning sizes LineLength Line is longer than 120 characters (found 347). 493
 Warning sizes LineLength Line is longer than 120 characters (found 122). 499
 Warning sizes LineLength Line is longer than 120 characters (found 179). 507
 Warning sizes LineLength Line is longer than 120 characters (found 132). 510
 Warning sizes LineLength Line is longer than 120 characters (found 122). 518
 Warning sizes LineLength Line is longer than 120 characters (found 181). 526
 Warning sizes LineLength Line is longer than 120 characters (found 122). 529
 Warning sizes LineLength Line is longer than 120 characters (found 122). 537
 Warning sizes LineLength Line is longer than 120 characters (found 229). 547
 Warning sizes LineLength Line is longer than 120 characters (found 159). 548
 Warning sizes LineLength Line is longer than 120 characters (found 188). 550
 Warning sizes LineLength Line is longer than 120 characters (found 159). 551
 Warning sizes LineLength Line is longer than 120 characters (found 272). 553
 Warning sizes LineLength Line is longer than 120 characters (found 159). 554
 Warning sizes LineLength Line is longer than 120 characters (found 126). 559
 Warning sizes LineLength Line is longer than 120 characters (found 127). 560
 Warning sizes LineLength Line is longer than 120 characters (found 136). 561
 Warning sizes LineLength Line is longer than 120 characters (found 122). 569
 Warning sizes LineLength Line is longer than 120 characters (found 275). 579
 Warning sizes LineLength Line is longer than 120 characters (found 151). 580
 Warning sizes LineLength Line is longer than 120 characters (found 195). 584
 Warning sizes LineLength Line is longer than 120 characters (found 122). 592
 Warning sizes LineLength Line is longer than 120 characters (found 121). 600
 Warning sizes LineLength Line is longer than 120 characters (found 123). 601
 Warning sizes LineLength Line is longer than 120 characters (found 235). 602
 Warning sizes LineLength Line is longer than 120 characters (found 152). 603
 Warning sizes LineLength Line is longer than 120 characters (found 230). 606
 Warning sizes LineLength Line is longer than 120 characters (found 122). 614
 Warning sizes LineLength Line is longer than 120 characters (found 123). 622
 Warning sizes LineLength Line is longer than 120 characters (found 123). 623
 Warning sizes LineLength Line is longer than 120 characters (found 367). 624
 Warning sizes LineLength Line is longer than 120 characters (found 152). 625
 Warning sizes LineLength Line is longer than 120 characters (found 212). 628
 Warning sizes LineLength Line is longer than 120 characters (found 122). 636
 Warning sizes LineLength Line is longer than 120 characters (found 121). 644
 Warning sizes LineLength Line is longer than 120 characters (found 123). 645
 Warning sizes LineLength Line is longer than 120 characters (found 367). 646
 Warning sizes LineLength Line is longer than 120 characters (found 158). 647
 Warning sizes LineLength Line is longer than 120 characters (found 204). 650
 Warning sizes LineLength Line is longer than 120 characters (found 122). 658
 Warning sizes LineLength Line is longer than 120 characters (found 121). 666
 Warning sizes LineLength Line is longer than 120 characters (found 123). 667
 Warning sizes LineLength Line is longer than 120 characters (found 161). 668
 Warning sizes LineLength Line is longer than 120 characters (found 158). 669
 Warning sizes LineLength Line is longer than 120 characters (found 209). 672
 Warning sizes LineLength Line is longer than 120 characters (found 122). 680
 Warning sizes LineLength Line is longer than 120 characters (found 121). 688
 Warning sizes LineLength Line is longer than 120 characters (found 123). 689
 Warning sizes LineLength Line is longer than 120 characters (found 229). 690
 Warning sizes LineLength Line is longer than 120 characters (found 150). 691
 Warning sizes LineLength Line is longer than 120 characters (found 198). 694
 Warning sizes LineLength Line is longer than 120 characters (found 122). 702
 Warning sizes LineLength Line is longer than 120 characters (found 126). 710
 Warning sizes LineLength Line is longer than 120 characters (found 123). 711
 Warning sizes LineLength Line is longer than 120 characters (found 237). 712
 Warning sizes LineLength Line is longer than 120 characters (found 151). 713
 Warning sizes LineLength Line is longer than 120 characters (found 220). 716
 Warning sizes LineLength Line is longer than 120 characters (found 122). 724
 Warning sizes LineLength Line is longer than 120 characters (found 123). 733
 Warning sizes LineLength Line is longer than 120 characters (found 278). 734
 Warning sizes LineLength Line is longer than 120 characters (found 158). 735
 Warning sizes LineLength Line is longer than 120 characters (found 212). 738
 Warning sizes LineLength Line is longer than 120 characters (found 122). 746
 Warning sizes LineLength Line is longer than 120 characters (found 123). 755
 Warning sizes LineLength Line is longer than 120 characters (found 295). 756
 Warning sizes LineLength Line is longer than 120 characters (found 322). 757
 Warning sizes LineLength Line is longer than 120 characters (found 232). 760
 Warning sizes LineLength Line is longer than 120 characters (found 229). 768
 Warning sizes LineLength Line is longer than 120 characters (found 141). 780
 Warning sizes LineLength Line is longer than 120 characters (found 141). 781
 Warning sizes LineLength Line is longer than 120 characters (found 141). 782

org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecIpv6NlriParser.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 126). 31
 Warning sizes LineLength Line is longer than 120 characters (found 211). 33
 Warning sizes LineLength Line is longer than 120 characters (found 133). 43
 Warning sizes LineLength Line is longer than 120 characters (found 210). 45
 Warning sizes LineLength Line is longer than 120 characters (found 216). 66
 Warning sizes LineLength Line is longer than 120 characters (found 247). 67
 Warning sizes LineLength Line is longer than 120 characters (found 217). 75
 Warning sizes LineLength Line is longer than 120 characters (found 248). 76

org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecIpv6NlriParserTest.java

Severity Category Rule Message Line
 Warning naming AbbreviationAsWordInName Abbreviation in name 'FS_PARSER' must contain no more than '4' capital letters. 84
 Warning sizes LineLength Line is longer than 120 characters (found 241). 84
 Warning naming MemberName Member name 'FS_PARSER' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 84
 Warning sizes LineLength Line is longer than 120 characters (found 164). 125
 Warning sizes LineLength Line is longer than 120 characters (found 144). 129
 Warning sizes LineLength Line is longer than 120 characters (found 178). 133
 Warning sizes LineLength Line is longer than 120 characters (found 207). 140
 Warning sizes LineLength Line is longer than 120 characters (found 275). 155
 Warning sizes LineLength Line is longer than 120 characters (found 211). 163
 Warning sizes LineLength Line is longer than 120 characters (found 151). 166
 Warning sizes LineLength Line is longer than 120 characters (found 164). 175
 Warning sizes LineLength Line is longer than 120 characters (found 144). 179
 Warning sizes LineLength Line is longer than 120 characters (found 178). 183
 Warning sizes LineLength Line is longer than 120 characters (found 207). 190
 Warning sizes LineLength Line is longer than 120 characters (found 275). 205
 Warning sizes LineLength Line is longer than 120 characters (found 211). 213
 Warning sizes LineLength Line is longer than 120 characters (found 151). 216
 Warning sizes LineLength Line is longer than 120 characters (found 208). 235
 Warning sizes LineLength Line is longer than 120 characters (found 275). 249
 Warning sizes LineLength Line is longer than 120 characters (found 181). 256
 Warning sizes LineLength Line is longer than 120 characters (found 182). 260
 Warning sizes LineLength Line is longer than 120 characters (found 193). 264
 Warning sizes LineLength Line is longer than 120 characters (found 141). 270
 Warning sizes LineLength Line is longer than 120 characters (found 135). 271
 Warning sizes LineLength Line is longer than 120 characters (found 208). 291
 Warning sizes LineLength Line is longer than 120 characters (found 275). 306
 Warning sizes LineLength Line is longer than 120 characters (found 181). 313
 Warning sizes LineLength Line is longer than 120 characters (found 182). 317
 Warning sizes LineLength Line is longer than 120 characters (found 122). 322
 Warning sizes LineLength Line is longer than 120 characters (found 123). 331
 Warning sizes LineLength Line is longer than 120 characters (found 295). 332
 Warning sizes LineLength Line is longer than 120 characters (found 322). 333
 Warning sizes LineLength Line is longer than 120 characters (found 232). 336
 Warning sizes LineLength Line is longer than 120 characters (found 122). 344
 Warning sizes LineLength Line is longer than 120 characters (found 229). 354
 Warning sizes LineLength Line is longer than 120 characters (found 159). 355
 Warning sizes LineLength Line is longer than 120 characters (found 188). 357
 Warning sizes LineLength Line is longer than 120 characters (found 159). 358
 Warning sizes LineLength Line is longer than 120 characters (found 272). 360
 Warning sizes LineLength Line is longer than 120 characters (found 159). 361
 Warning sizes LineLength Line is longer than 120 characters (found 126). 366
 Warning sizes LineLength Line is longer than 120 characters (found 127). 367
 Warning sizes LineLength Line is longer than 120 characters (found 136). 368
 Warning sizes LineLength Line is longer than 120 characters (found 122). 376
 Warning sizes LineLength Line is longer than 120 characters (found 229). 386
 Warning sizes LineLength Line is longer than 120 characters (found 152). 387
 Warning sizes LineLength Line is longer than 120 characters (found 188). 389
 Warning sizes LineLength Line is longer than 120 characters (found 152). 390
 Warning sizes LineLength Line is longer than 120 characters (found 129). 396
 Warning sizes LineLength Line is longer than 120 characters (found 122). 404
 Warning sizes LineLength Line is longer than 120 characters (found 183). 412
 Warning sizes LineLength Line is longer than 120 characters (found 140). 414
 Warning sizes LineLength Line is longer than 120 characters (found 122). 422
 Warning sizes LineLength Line is longer than 120 characters (found 187). 430
 Warning sizes LineLength Line is longer than 120 characters (found 130). 432

org/opendaylight/protocol/bgp/flowspec/SimpleFlowspecTypeRegistry.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 128). 19
 Warning sizes LineLength Line is longer than 120 characters (found 145). 46

org/opendaylight/protocol/bgp/flowspec/TableTypeActivator.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 125). 28
 Warning sizes LineLength Line is longer than 120 characters (found 126). 30
 Warning sizes LineLength Line is longer than 120 characters (found 126). 31
 Warning sizes LineLength Line is longer than 120 characters (found 136). 32
 Warning sizes LineLength Line is longer than 120 characters (found 137). 33

org/opendaylight/protocol/bgp/flowspec/TableTypeActivatorTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 135). 29
 Warning sizes LineLength Line is longer than 120 characters (found 135). 30
 Warning sizes LineLength Line is longer than 120 characters (found 144). 31
 Warning sizes LineLength Line is longer than 120 characters (found 144). 32

org/opendaylight/protocol/bgp/flowspec/extended/communities/FSExtendedCommunitiesTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 125). 69
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 88
 Warning sizes LineLength Line is longer than 120 characters (found 139). 101
 Warning sizes LineLength Line is longer than 120 characters (found 140). 104
 Warning sizes LineLength Line is longer than 120 characters (found 445). 112
 Warning sizes LineLength Line is longer than 120 characters (found 140). 115
 Warning sizes LineLength Line is longer than 120 characters (found 147). 124
 Warning sizes LineLength Line is longer than 120 characters (found 142). 126
 Warning sizes LineLength Line is longer than 120 characters (found 453). 134
 Warning sizes LineLength Line is longer than 120 characters (found 142). 136
 Warning sizes LineLength Line is longer than 120 characters (found 151). 145
 Warning sizes LineLength Line is longer than 120 characters (found 123). 146
 Warning sizes LineLength Line is longer than 120 characters (found 143). 147
 Warning sizes LineLength Line is longer than 120 characters (found 457). 155
 Warning sizes LineLength Line is longer than 120 characters (found 123). 156
 Warning sizes LineLength Line is longer than 120 characters (found 143). 157
 Warning sizes LineLength Line is longer than 120 characters (found 127). 166
 Warning sizes LineLength Line is longer than 120 characters (found 124). 167
 Warning sizes LineLength Line is longer than 120 characters (found 137). 169
 Warning sizes LineLength Line is longer than 120 characters (found 123). 171
 Warning sizes LineLength Line is longer than 120 characters (found 433). 177
 Warning sizes LineLength Line is longer than 120 characters (found 124). 178
 Warning sizes LineLength Line is longer than 120 characters (found 137). 180
 Warning sizes LineLength Line is longer than 120 characters (found 137). 193
 Warning sizes LineLength Line is longer than 120 characters (found 411). 201
 Warning sizes LineLength Line is longer than 120 characters (found 137). 205
 Warning sizes LineLength Line is longer than 120 characters (found 129). 215
 Warning sizes LineLength Line is longer than 120 characters (found 137). 217
 Warning sizes LineLength Line is longer than 120 characters (found 123). 219
 Warning sizes LineLength Line is longer than 120 characters (found 425). 225
 Warning sizes LineLength Line is longer than 120 characters (found 129). 226
 Warning sizes LineLength Line is longer than 120 characters (found 137). 228
 Warning sizes LineLength Line is longer than 120 characters (found 122). 237
 Warning sizes LineLength Line is longer than 120 characters (found 139). 238
 Warning sizes LineLength Line is longer than 120 characters (found 137). 240
 Warning sizes LineLength Line is longer than 120 characters (found 428). 248
 Warning sizes LineLength Line is longer than 120 characters (found 139). 249
 Warning sizes LineLength Line is longer than 120 characters (found 137). 251
 Warning sizes LineLength Line is longer than 120 characters (found 139). 260
 Warning sizes LineLength Line is longer than 120 characters (found 153). 261
 Warning sizes LineLength Line is longer than 120 characters (found 137). 263
 Warning sizes LineLength Line is longer than 120 characters (found 121). 265
 Warning sizes LineLength Line is longer than 120 characters (found 445). 271
 Warning sizes LineLength Line is longer than 120 characters (found 153). 272
 Warning sizes LineLength Line is longer than 120 characters (found 137). 274
 Warning sizes LineLength Line is longer than 120 characters (found 139). 283
 Warning sizes LineLength Line is longer than 120 characters (found 152). 284
 Warning sizes LineLength Line is longer than 120 characters (found 137). 286
 Warning sizes LineLength Line is longer than 120 characters (found 121). 288
 Warning sizes LineLength Line is longer than 120 characters (found 445). 294
 Warning sizes LineLength Line is longer than 120 characters (found 137). 295
 Warning sizes LineLength Line is longer than 120 characters (found 137). 297

org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectAsFourOctetEcHandler.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 182). 32
 Warning sizes LineLength Line is longer than 120 characters (found 193). 34
 Warning sizes LineLength Line is longer than 120 characters (found 126). 40

org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectAsTwoOctetEcHandler.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 179). 35
 Warning sizes LineLength Line is longer than 120 characters (found 218). 37
 Warning sizes LineLength Line is longer than 120 characters (found 126). 54

org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectIpNextHopEcHandler.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 183). 37
 Warning sizes LineLength Line is longer than 120 characters (found 230). 39
 Warning sizes LineLength Line is longer than 120 characters (found 126). 50
 Warning whitespace ParenPad ')' is preceded with whitespace. 52

org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectIpv4EcHandler.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 183). 32
 Warning sizes LineLength Line is longer than 120 characters (found 196). 34
 Warning sizes LineLength Line is longer than 120 characters (found 126). 40

org/opendaylight/protocol/bgp/flowspec/extended/communities/RedirectIpv6EcHandler.java

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

org/opendaylight/protocol/bgp/flowspec/extended/communities/TrafficActionEcHandler.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 184). 39
 Warning sizes LineLength Line is longer than 120 characters (found 238). 41
 Warning sizes LineLength Line is longer than 120 characters (found 126). 61

org/opendaylight/protocol/bgp/flowspec/extended/communities/TrafficMarkingEcHandler.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 185). 34
 Warning sizes LineLength Line is longer than 120 characters (found 242). 36
 Warning sizes LineLength Line is longer than 120 characters (found 124). 38
 Warning sizes LineLength Line is longer than 120 characters (found 126). 53

org/opendaylight/protocol/bgp/flowspec/extended/communities/TrafficRateEcHandler.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 182). 36
 Warning sizes LineLength Line is longer than 120 characters (found 230). 38
 Warning sizes LineLength Line is longer than 120 characters (found 126). 55

org/opendaylight/protocol/bgp/flowspec/handlers/AbstractFSFragmentHandler.java

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

org/opendaylight/protocol/bgp/flowspec/handlers/AbstractNumericOperandParser.java

Severity Category Rule Message Line
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '41'. 56
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '43'. 81

org/opendaylight/protocol/bgp/flowspec/handlers/FSIpv4DestinationPrefixHandler.java

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

org/opendaylight/protocol/bgp/flowspec/handlers/FSIpv4FragmentHandler.java

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

org/opendaylight/protocol/bgp/flowspec/handlers/FSIpv6DestinationPrefixHandler.java

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

org/opendaylight/protocol/bgp/flowspec/handlers/NumericOperandParserTest.java

Severity Category Rule Message Line
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 26
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 27
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 28

org/opendaylight/protocol/bgp/flowspec/ipv4/FlowspecIpv4NlriParserHelper.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 34
 Warning javadoc JavadocStyle Javadoc has empty description section. 34
 Warning modifier RedundantModifier Redundant 'final' modifier. 43
 Warning sizes LineLength Line is longer than 120 characters (found 125). 48
 Warning sizes LineLength Line is longer than 120 characters (found 127). 55
 Warning sizes LineLength Line is longer than 120 characters (found 168). 59
 Warning modifier RedundantModifier Redundant 'final' modifier. 63
 Warning modifier RedundantModifier Redundant 'final' modifier. 76
 Warning sizes LineLength Line is longer than 120 characters (found 133). 81
 Warning sizes LineLength Line is longer than 120 characters (found 138). 85

org/opendaylight/protocol/bgp/flowspec/ipv6/FlowspecIpv6NlriParserHelper.java

Severity Category Rule Message Line
 Warning modifier RedundantModifier Redundant 'final' modifier. 45
 Warning sizes LineLength Line is longer than 120 characters (found 144). 49
 Warning sizes LineLength Line is longer than 120 characters (found 141). 55
 Warning sizes LineLength Line is longer than 120 characters (found 167). 59
 Warning sizes LineLength Line is longer than 120 characters (found 162). 61
 Warning modifier RedundantModifier Redundant 'final' modifier. 65
 Warning modifier RedundantModifier Redundant 'final' modifier. 81
 Warning sizes LineLength Line is longer than 120 characters (found 133). 86
 Warning sizes LineLength Line is longer than 120 characters (found 126). 88
 Warning sizes LineLength Line is longer than 120 characters (found 138). 90
 Warning modifier RedundantModifier Redundant 'final' modifier. 100
 Warning sizes LineLength Line is longer than 120 characters (found 133). 105
 Warning sizes LineLength Line is longer than 120 characters (found 125). 107
 Warning sizes LineLength Line is longer than 120 characters (found 138). 109
 Warning modifier RedundantModifier Redundant 'final' modifier. 119

org/opendaylight/protocol/bgp/flowspec/l3vpn/AbstractFlowspecL3vpnNlriParser.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 165). 31
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 48
 Warning javadoc JavadocStyle First sentence should end with a period. 48
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 51
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 52

org/opendaylight/protocol/bgp/flowspec/l3vpn/AbstractFlowspecL3vpnRIBSupport.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 136). 30
 Warning sizes LineLength Line is longer than 120 characters (found 150). 41
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 8. 62

org/opendaylight/protocol/bgp/flowspec/l3vpn/ipv4/FlowspecL3vpnIpv4NlriParser.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 27
 Warning javadoc JavadocStyle Javadoc has empty description section. 27
 Warning sizes LineLength Line is longer than 120 characters (found 126). 37
 Warning sizes LineLength Line is longer than 120 characters (found 216). 40
 Warning sizes LineLength Line is longer than 120 characters (found 133). 51
 Warning sizes LineLength Line is longer than 120 characters (found 215). 54
 Warning sizes LineLength Line is longer than 120 characters (found 221). 76
 Warning sizes LineLength Line is longer than 120 characters (found 261). 77
 Warning sizes LineLength Line is longer than 120 characters (found 222). 92
 Warning sizes LineLength Line is longer than 120 characters (found 262). 93

org/opendaylight/protocol/bgp/flowspec/l3vpn/ipv4/FlowspecL3vpnIpv4RIBSupport.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.l3vpn.ipv4.route.FlowspecL3vpnRoute' import. Should be before 'org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.flowspec.rev150807.flowspec.l3vpn.ipv4.routes.FlowspecL3vpnIpv4Routes'. 15
 Warning sizes LineLength Line is longer than 120 characters (found 183). 27

org/opendaylight/protocol/bgp/flowspec/l3vpn/ipv6/FlowspecL3vpnIpv6NlriParser.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 27
 Warning javadoc JavadocStyle Javadoc has empty description section. 27
 Warning sizes LineLength Line is longer than 120 characters (found 126). 37
 Warning sizes LineLength Line is longer than 120 characters (found 216). 40
 Warning sizes LineLength Line is longer than 120 characters (found 133). 51
 Warning sizes LineLength Line is longer than 120 characters (found 215). 54
 Warning sizes LineLength Line is longer than 120 characters (found 221). 76
 Warning sizes LineLength Line is longer than 120 characters (found 261). 77
 Warning sizes LineLength Line is longer than 120 characters (found 222). 92
 Warning sizes LineLength Line is longer than 120 characters (found 262). 93

org/opendaylight/protocol/bgp/flowspec/l3vpn/ipv6/FlowspecL3vpnIpv6RIBSupport.java

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