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
40 0 509 0

Files

File  I  W  E
org/opendaylight/controller/config/yang/pcep/impl/PCEPDispatcherImplModule.java 0 5 0
org/opendaylight/controller/config/yang/pcep/impl/PCEPDispatcherImplModuleFactory.java 0 2 0
org/opendaylight/protocol/pcep/impl/AbstractPCEPSessionNegotiator.java 0 51 0
org/opendaylight/protocol/pcep/impl/AbstractPCEPSessionNegotiatorFactory.java 0 2 0
org/opendaylight/protocol/pcep/impl/AbstractPCEPSessionTest.java 0 2 0
org/opendaylight/protocol/pcep/impl/AbstractSessionNegotiator.java 0 3 0
org/opendaylight/protocol/pcep/impl/BasePCEPSessionProposalFactory.java 0 7 0
org/opendaylight/protocol/pcep/impl/DefaultPCEPSessionNegotiator.java 0 3 0
org/opendaylight/protocol/pcep/impl/DefaultPCEPSessionNegotiatorFactory.java 0 4 0
org/opendaylight/protocol/pcep/impl/FiniteStateMachineTest.java 0 17 0
org/opendaylight/protocol/pcep/impl/LabelSubobjectParserTest.java 0 10 0
org/opendaylight/protocol/pcep/impl/PCEPDispatcherImpl.java 0 1 0
org/opendaylight/protocol/pcep/impl/PCEPDispatcherImplTest.java 0 3 0
org/opendaylight/protocol/pcep/impl/PCEPEROSubobjectParserTest.java 0 37 0
org/opendaylight/protocol/pcep/impl/PCEPMessageHeaderDecoder.java 0 2 0
org/opendaylight/protocol/pcep/impl/PCEPMessageToByteEncoder.java 0 2 0
org/opendaylight/protocol/pcep/impl/PCEPObjectParserTest.java 0 139 0
org/opendaylight/protocol/pcep/impl/PCEPParserTest.java 0 4 0
org/opendaylight/protocol/pcep/impl/PCEPPeerRegistry.java 0 5 0
org/opendaylight/protocol/pcep/impl/PCEPProtocolSessionPromise.java 0 8 0
org/opendaylight/protocol/pcep/impl/PCEPRROSubobjectParserTest.java 0 25 0
org/opendaylight/protocol/pcep/impl/PCEPSessionImpl.java 0 10 0
org/opendaylight/protocol/pcep/impl/PCEPSessionImplTest.java 0 13 0
org/opendaylight/protocol/pcep/impl/PCEPSessionNegotiator.java 0 4 0
org/opendaylight/protocol/pcep/impl/PCEPSessionState.java 0 3 0
org/opendaylight/protocol/pcep/impl/PCEPTlvParserTest.java 0 14 0
org/opendaylight/protocol/pcep/impl/PCEPValidatorTest.java 0 68 0
org/opendaylight/protocol/pcep/impl/PCEPXROSubobjectParserTest.java 0 29 0
org/opendaylight/protocol/pcep/impl/PeerRecord.java 0 1 0
org/opendaylight/protocol/pcep/impl/SimpleSessionListener.java 0 1 0
org/opendaylight/protocol/pcep/impl/SslContextFactoryTest.java 0 1 0
org/opendaylight/protocol/pcep/impl/TestVendorInformationObjectParser.java 0 1 0
org/opendaylight/protocol/pcep/impl/TestVendorInformationTlvParser.java 0 1 0
org/opendaylight/protocol/pcep/impl/UtilTest.java 0 3 0
org/opendaylight/protocol/pcep/impl/spi/Util.java 0 5 0
org/opendaylight/protocol/pcep/impl/tls/SslContextFactory.java 0 6 0
org/opendaylight/protocol/pcep/impl/tls/SslKeyStore.java 0 17 0

Rules

Category Rule Violations Severity
blocks EmptyBlock
  • tokens: "LITERAL_TRY, LITERAL_CATCH, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_SWITCH"
  • option: "TEXT"
2  Warning
coding IllegalCatch 8  Warning
IllegalThrows 1  Warning
MultipleVariableDeclarations 2  Warning
OverloadMethodsDeclarationOrder 1  Warning
VariableDeclarationUsageDistance 9  Warning
imports CustomImportOrder
  • thirdPartyPackageRegExp: ".*"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
1  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "4"
  • caseIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
55  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"
12  Warning
NonEmptyAtclauseDescription 3  Warning
modifier RedundantModifier 6  Warning
naming AbbreviationAsWordInName
  • ignoreFinal: "false"
  • allowedAbbreviationLength: "4"
5  Warning
ConstantName 29  Warning
LocalVariableName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
3  Warning
MemberName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
1  Warning
ParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
6  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
333  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
WhitespaceAround
  • allowEmptyConstructors: "true"
  • allowEmptyMethods: "true"
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
21  Warning

Details

org/opendaylight/controller/config/yang/pcep/impl/PCEPDispatcherImplModule.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 26
 Warning javadoc JavadocStyle Javadoc has empty description section. 26
 Warning sizes LineLength Line is longer than 120 characters (found 137). 39
 Warning sizes LineLength Line is longer than 120 characters (found 126). 52
 Warning modifier RedundantModifier Redundant 'static' modifier. 67

org/opendaylight/controller/config/yang/pcep/impl/PCEPDispatcherImplModuleFactory.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 22
 Warning javadoc JavadocStyle Javadoc has empty description section. 22

org/opendaylight/protocol/pcep/impl/AbstractPCEPSessionNegotiator.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 65
 Warning javadoc JavadocStyle First sentence should end with a period. 65
 Warning sizes LineLength Line is longer than 120 characters (found 137). 84
 Warning whitespace EmptyLineSeparator ',' should be separated from previous statement. 86
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 86
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 142
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 152
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 153
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 154
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 155
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 156
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 157
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 158
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 159
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 160
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 161
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 162
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 163
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 164
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 165
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 166
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 167
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 168
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 169
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 170
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 171
 Warning sizes LineLength Line is longer than 120 characters (found 151). 196
 Warning sizes LineLength Line is longer than 120 characters (found 165). 229
 Warning sizes LineLength Line is longer than 120 characters (found 126). 244
 Warning sizes LineLength Line is longer than 120 characters (found 125). 253
 Warning sizes LineLength Line is longer than 120 characters (found 247). 256
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 326
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 327
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 328
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 329
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 16. 330
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 331
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 16. 332
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 333
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 334
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 16. 335
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 336
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 16. 337
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 338
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 339
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 16. 340
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 341
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 16. 342
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 343
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 344
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 345

org/opendaylight/protocol/pcep/impl/AbstractPCEPSessionNegotiatorFactory.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 133). 39
 Warning modifier RedundantModifier Redundant 'final' modifier. 40

org/opendaylight/protocol/pcep/impl/AbstractPCEPSessionTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 133). 103
 Warning sizes LineLength Line is longer than 120 characters (found 153). 111

org/opendaylight/protocol/pcep/impl/AbstractSessionNegotiator.java

Severity Category Rule Message Line
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 62
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 75
 Warning modifier RedundantModifier Redundant 'final' modifier. 90

org/opendaylight/protocol/pcep/impl/BasePCEPSessionProposalFactory.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator ',' should be separated from previous statement. 26
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 26
 Warning sizes LineLength Line is longer than 120 characters (found 126). 29
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 32
 Warning sizes LineLength Line is longer than 120 characters (found 123). 33
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 54

org/opendaylight/protocol/pcep/impl/DefaultPCEPSessionNegotiator.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 153). 24
 Warning sizes LineLength Line is longer than 120 characters (found 139). 28
 Warning sizes LineLength Line is longer than 120 characters (found 125). 34

org/opendaylight/protocol/pcep/impl/DefaultPCEPSessionNegotiatorFactory.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 144). 29
 Warning sizes LineLength Line is longer than 120 characters (found 121). 35
 Warning sizes LineLength Line is longer than 120 characters (found 136). 40
 Warning sizes LineLength Line is longer than 120 characters (found 137). 43

org/opendaylight/protocol/pcep/impl/FiniteStateMachineTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 161). 42
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 68
 Warning javadoc JavadocStyle First sentence should end with a period. 68
 Warning sizes LineLength Line is longer than 120 characters (found 140). 73
 Warning javadoc JavadocStyle First sentence should end with a period. 88
 Warning javadoc JavadocStyle First sentence should end with a period. 108
 Warning sizes LineLength Line is longer than 120 characters (found 138). 140
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 158
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 220
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 222
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 224
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 226
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 228
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 230
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 232
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 234
 Warning whitespace WhitespaceAround WhitespaceAround: '->' is not preceded with whitespace. 241

org/opendaylight/protocol/pcep/impl/LabelSubobjectParserTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 121). 31
 Warning naming ConstantName Name 'generalizedLabelBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 31
 Warning naming ConstantName Name 'typeOneLabelBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 33
 Warning sizes LineLength Line is longer than 120 characters (found 134). 35
 Warning naming ConstantName Name 'wavebandLabelBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 35
 Warning sizes LineLength Line is longer than 120 characters (found 124). 43
 Warning sizes LineLength Line is longer than 120 characters (found 127). 44
 Warning sizes LineLength Line is longer than 120 characters (found 142). 71
 Warning sizes LineLength Line is longer than 120 characters (found 124). 72
 Warning sizes LineLength Line is longer than 120 characters (found 123). 97

org/opendaylight/protocol/pcep/impl/PCEPDispatcherImpl.java

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

org/opendaylight/protocol/pcep/impl/PCEPDispatcherImplTest.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'b' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 228
 Warning blocks EmptyBlock Empty catch block. 231
 Warning naming ParameterName Parameter name 'b' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 235

org/opendaylight/protocol/pcep/impl/PCEPEROSubobjectParserTest.java

Severity Category Rule Message Line
 Warning naming AbbreviationAsWordInName Abbreviation in name 'PCEPEROSubobjectParserTest' must contain no more than '5' consecutive capital letters. 54
 Warning sizes LineLength Line is longer than 120 characters (found 128). 55
 Warning naming ConstantName Name 'ip4PrefixBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 55
 Warning sizes LineLength Line is longer than 120 characters (found 128). 57
 Warning naming ConstantName Name 'ip6PrefixBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 57
 Warning sizes LineLength Line is longer than 120 characters (found 137). 58
 Warning naming ConstantName Name 'asNumberBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 60
 Warning sizes LineLength Line is longer than 120 characters (found 129). 61
 Warning naming ConstantName Name 'unnumberedBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 61
 Warning sizes LineLength Line is longer than 120 characters (found 128). 63
 Warning naming ConstantName Name 'pathKey32Bytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 63
 Warning sizes LineLength Line is longer than 120 characters (found 129). 65
 Warning naming ConstantName Name 'pathKey128Bytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 65
 Warning sizes LineLength Line is longer than 120 characters (found 137). 66
 Warning sizes LineLength Line is longer than 120 characters (found 137). 68
 Warning naming ConstantName Name 'labelBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 68
 Warning sizes LineLength Line is longer than 120 characters (found 125). 70
 Warning naming ConstantName Name 'exrsBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 70
 Warning sizes LineLength Line is longer than 120 characters (found 127). 89
 Warning sizes LineLength Line is longer than 120 characters (found 138). 114
 Warning sizes LineLength Line is longer than 120 characters (found 131). 115
 Warning sizes LineLength Line is longer than 120 characters (found 128). 118
 Warning sizes LineLength Line is longer than 120 characters (found 141). 142
 Warning sizes LineLength Line is longer than 120 characters (found 126). 143
 Warning sizes LineLength Line is longer than 120 characters (found 128). 169
 Warning sizes LineLength Line is longer than 120 characters (found 127). 197
 Warning sizes LineLength Line is longer than 120 characters (found 139). 222
 Warning sizes LineLength Line is longer than 120 characters (found 132). 223
 Warning sizes LineLength Line is longer than 120 characters (found 128). 226
 Warning sizes LineLength Line is longer than 120 characters (found 143). 255
 Warning sizes LineLength Line is longer than 120 characters (found 123). 256
 Warning naming AbbreviationAsWordInName Abbreviation in name 'testEROEXRSSubobject' must contain no more than '5' consecutive capital letters. 276
 Warning sizes LineLength Line is longer than 120 characters (found 152). 277
 Warning sizes LineLength Line is longer than 120 characters (found 190). 280
 Warning sizes LineLength Line is longer than 120 characters (found 328). 281
 Warning sizes LineLength Line is longer than 120 characters (found 144). 283
 Warning sizes LineLength Line is longer than 120 characters (found 122). 286

org/opendaylight/protocol/pcep/impl/PCEPMessageHeaderDecoder.java

Severity Category Rule Message Line
 Warning javadoc JavadocStyle Javadoc has empty description section. 12
 Warning sizes LineLength Line is longer than 120 characters (found 141). 37

org/opendaylight/protocol/pcep/impl/PCEPMessageToByteEncoder.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 21
 Warning javadoc JavadocStyle Javadoc has empty description section. 21

org/opendaylight/protocol/pcep/impl/PCEPObjectParserTest.java

Severity Category Rule Message Line
 Warning naming AbbreviationAsWordInName Abbreviation in name 'testOpenObjectWOTLV' must contain no more than '5' consecutive capital letters. 161
 Warning sizes LineLength Line is longer than 120 characters (found 154). 173
 Warning sizes LineLength Line is longer than 120 characters (found 139). 175
 Warning sizes LineLength Line is longer than 120 characters (found 158). 203
 Warning sizes LineLength Line is longer than 120 characters (found 139). 205
 Warning sizes LineLength Line is longer than 120 characters (found 128). 227
 Warning sizes LineLength Line is longer than 120 characters (found 138). 235
 Warning sizes LineLength Line is longer than 120 characters (found 130). 256
 Warning sizes LineLength Line is longer than 120 characters (found 144). 257
 Warning sizes LineLength Line is longer than 120 characters (found 170). 262
 Warning sizes LineLength Line is longer than 120 characters (found 161). 263
 Warning sizes LineLength Line is longer than 120 characters (found 146). 265
 Warning sizes LineLength Line is longer than 120 characters (found 161). 266
 Warning sizes LineLength Line is longer than 120 characters (found 145). 269
 Warning sizes LineLength Line is longer than 120 characters (found 161). 270
 Warning sizes LineLength Line is longer than 120 characters (found 136). 273
 Warning sizes LineLength Line is longer than 120 characters (found 139). 276
 Warning sizes LineLength Line is longer than 120 characters (found 128). 291
 Warning sizes LineLength Line is longer than 120 characters (found 143). 292
 Warning sizes LineLength Line is longer than 120 characters (found 130). 293
 Warning sizes LineLength Line is longer than 120 characters (found 130). 294
 Warning sizes LineLength Line is longer than 120 characters (found 169). 299
 Warning sizes LineLength Line is longer than 120 characters (found 168). 300
 Warning sizes LineLength Line is longer than 120 characters (found 151). 301
 Warning sizes LineLength Line is longer than 120 characters (found 168). 302
 Warning sizes LineLength Line is longer than 120 characters (found 147). 304
 Warning sizes LineLength Line is longer than 120 characters (found 168). 305
 Warning sizes LineLength Line is longer than 120 characters (found 159). 307
 Warning sizes LineLength Line is longer than 120 characters (found 168). 308
 Warning sizes LineLength Line is longer than 120 characters (found 142). 310
 Warning sizes LineLength Line is longer than 120 characters (found 139). 313
 Warning sizes LineLength Line is longer than 120 characters (found 130). 334
 Warning sizes LineLength Line is longer than 120 characters (found 144). 335
 Warning sizes LineLength Line is longer than 120 characters (found 130). 336
 Warning sizes LineLength Line is longer than 120 characters (found 130). 337
 Warning sizes LineLength Line is longer than 120 characters (found 170). 342
 Warning sizes LineLength Line is longer than 120 characters (found 169). 343
 Warning sizes LineLength Line is longer than 120 characters (found 173). 344
 Warning sizes LineLength Line is longer than 120 characters (found 193). 345
 Warning sizes LineLength Line is longer than 120 characters (found 151). 346
 Warning sizes LineLength Line is longer than 120 characters (found 169). 348
 Warning sizes LineLength Line is longer than 120 characters (found 173). 349
 Warning sizes LineLength Line is longer than 120 characters (found 193). 350
 Warning sizes LineLength Line is longer than 120 characters (found 158). 351
 Warning sizes LineLength Line is longer than 120 characters (found 169). 353
 Warning sizes LineLength Line is longer than 120 characters (found 177). 354
 Warning sizes LineLength Line is longer than 120 characters (found 196). 355
 Warning sizes LineLength Line is longer than 120 characters (found 139). 356
 Warning sizes LineLength Line is longer than 120 characters (found 139). 360
 Warning sizes LineLength Line is longer than 120 characters (found 135). 382
 Warning sizes LineLength Line is longer than 120 characters (found 137). 389
 Warning sizes LineLength Line is longer than 120 characters (found 135). 411
 Warning sizes LineLength Line is longer than 120 characters (found 131). 414
 Warning sizes LineLength Line is longer than 120 characters (found 137). 420
 Warning sizes LineLength Line is longer than 120 characters (found 128). 445
 Warning sizes LineLength Line is longer than 120 characters (found 145). 451
 Warning sizes LineLength Line is longer than 120 characters (found 138). 454
 Warning sizes LineLength Line is longer than 120 characters (found 127). 475
 Warning sizes LineLength Line is longer than 120 characters (found 131). 476
 Warning sizes LineLength Line is longer than 120 characters (found 139). 477
 Warning sizes LineLength Line is longer than 120 characters (found 128). 481
 Warning sizes LineLength Line is longer than 120 characters (found 145). 487
 Warning sizes LineLength Line is longer than 120 characters (found 138). 490
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 5, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 512
 Warning sizes LineLength Line is longer than 120 characters (found 137). 520
 Warning sizes LineLength Line is longer than 120 characters (found 139). 529
 Warning sizes LineLength Line is longer than 120 characters (found 137). 531
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 10, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 553
 Warning sizes LineLength Line is longer than 120 characters (found 124). 553
 Warning sizes LineLength Line is longer than 120 characters (found 154). 564
 Warning sizes LineLength Line is longer than 120 characters (found 137). 566
 Warning sizes LineLength Line is longer than 120 characters (found 137). 580
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 7, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 602
 Warning sizes LineLength Line is longer than 120 characters (found 126). 602
 Warning sizes LineLength Line is longer than 120 characters (found 137). 612
 Warning sizes LineLength Line is longer than 120 characters (found 137). 624
 Warning sizes LineLength Line is longer than 120 characters (found 125). 646
 Warning sizes LineLength Line is longer than 120 characters (found 202). 653
 Warning sizes LineLength Line is longer than 120 characters (found 137). 655
 Warning sizes LineLength Line is longer than 120 characters (found 183). 666
 Warning sizes LineLength Line is longer than 120 characters (found 209). 667
 Warning sizes LineLength Line is longer than 120 characters (found 137). 670
 Warning sizes LineLength Line is longer than 120 characters (found 123). 691
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 5, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 692
 Warning sizes LineLength Line is longer than 120 characters (found 131). 692
 Warning sizes LineLength Line is longer than 120 characters (found 137). 700
 Warning sizes LineLength Line is longer than 120 characters (found 183). 709
 Warning sizes LineLength Line is longer than 120 characters (found 137). 712
 Warning sizes LineLength Line is longer than 120 characters (found 131). 733
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 16, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 734
 Warning sizes LineLength Line is longer than 120 characters (found 150). 751
 Warning sizes LineLength Line is longer than 120 characters (found 137). 753
 Warning sizes LineLength Line is longer than 120 characters (found 150). 768
 Warning sizes LineLength Line is longer than 120 characters (found 137). 771
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 7, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 793
 Warning sizes LineLength Line is longer than 120 characters (found 139). 803
 Warning sizes LineLength Line is longer than 120 characters (found 138). 828
 Warning sizes LineLength Line is longer than 120 characters (found 143). 850
 Warning sizes LineLength Line is longer than 120 characters (found 138). 857
 Warning sizes LineLength Line is longer than 120 characters (found 128). 878
 Warning sizes LineLength Line is longer than 120 characters (found 128). 879
 Warning sizes LineLength Line is longer than 120 characters (found 153). 884
 Warning sizes LineLength Line is longer than 120 characters (found 137). 888
 Warning sizes LineLength Line is longer than 120 characters (found 138). 891
 Warning sizes LineLength Line is longer than 120 characters (found 139). 894
 Warning sizes LineLength Line is longer than 120 characters (found 121). 916
 Warning sizes LineLength Line is longer than 120 characters (found 138). 926
 Warning sizes LineLength Line is longer than 120 characters (found 133). 947
 Warning sizes LineLength Line is longer than 120 characters (found 133). 948
 Warning sizes LineLength Line is longer than 120 characters (found 150). 954
 Warning sizes LineLength Line is longer than 120 characters (found 138). 956
 Warning sizes LineLength Line is longer than 120 characters (found 133). 977
 Warning sizes LineLength Line is longer than 120 characters (found 133). 978
 Warning sizes LineLength Line is longer than 120 characters (found 150). 987
 Warning sizes LineLength Line is longer than 120 characters (found 138). 989
 Warning sizes LineLength Line is longer than 120 characters (found 127). 1010
 Warning sizes LineLength Line is longer than 120 characters (found 124). 1016
 Warning sizes LineLength Line is longer than 120 characters (found 125). 1024
 Warning sizes LineLength Line is longer than 120 characters (found 130). 1033
 Warning sizes LineLength Line is longer than 120 characters (found 208). 1047
 Warning sizes LineLength Line is longer than 120 characters (found 122). 1075
 Warning sizes LineLength Line is longer than 120 characters (found 148). 1081
 Warning sizes LineLength Line is longer than 120 characters (found 139). 1084
 Warning sizes LineLength Line is longer than 120 characters (found 128). 1103
 Warning sizes LineLength Line is longer than 120 characters (found 165). 1107
 Warning sizes LineLength Line is longer than 120 characters (found 145). 1126
 Warning sizes LineLength Line is longer than 120 characters (found 166). 1127
 Warning sizes LineLength Line is longer than 120 characters (found 134). 1129
 Warning sizes LineLength Line is longer than 120 characters (found 122). 1145
 Warning sizes LineLength Line is longer than 120 characters (found 132). 1147
 Warning sizes LineLength Line is longer than 120 characters (found 132). 1168
 Warning sizes LineLength Line is longer than 120 characters (found 174). 1184
 Warning sizes LineLength Line is longer than 120 characters (found 129). 1187
 Warning sizes LineLength Line is longer than 120 characters (found 177). 1206
 Warning sizes LineLength Line is longer than 120 characters (found 132). 1209
 Warning sizes LineLength Line is longer than 120 characters (found 132). 1243
 Warning sizes LineLength Line is longer than 120 characters (found 132). 1261
 Warning sizes LineLength Line is longer than 120 characters (found 131). 1276
 Warning sizes LineLength Line is longer than 120 characters (found 158). 1292

org/opendaylight/protocol/pcep/impl/PCEPParserTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 138). 30
 Warning sizes LineLength Line is longer than 120 characters (found 125). 36
 Warning sizes LineLength Line is longer than 120 characters (found 124). 46
 Warning sizes LineLength Line is longer than 120 characters (found 170). 48

org/opendaylight/protocol/pcep/impl/PCEPPeerRegistry.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 133). 43
 Warning sizes LineLength Line is longer than 120 characters (found 122). 70
 Warning sizes LineLength Line is longer than 120 characters (found 138). 75
 Warning sizes LineLength Line is longer than 120 characters (found 125). 80
 Warning modifier RedundantModifier Redundant 'public' modifier. 88

org/opendaylight/protocol/pcep/impl/PCEPProtocolSessionPromise.java

Severity Category Rule Message Line
 Warning naming MemberName Member name 'b' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 34
 Warning naming ParameterName Parameter name 'b' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 39
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 61
 Warning modifier RedundantModifier Redundant 'public' modifier. 86
 Warning sizes LineLength Line is longer than 120 characters (found 145). 103
 Warning sizes LineLength Line is longer than 120 characters (found 123). 106
 Warning sizes LineLength Line is longer than 120 characters (found 133). 113
 Warning sizes LineLength Line is longer than 120 characters (found 137). 118

org/opendaylight/protocol/pcep/impl/PCEPRROSubobjectParserTest.java

Severity Category Rule Message Line
 Warning naming AbbreviationAsWordInName Abbreviation in name 'PCEPRROSubobjectParserTest' must contain no more than '5' consecutive capital letters. 44
 Warning sizes LineLength Line is longer than 120 characters (found 128). 46
 Warning naming ConstantName Name 'ip4PrefixBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 46
 Warning sizes LineLength Line is longer than 120 characters (found 128). 48
 Warning naming ConstantName Name 'ip6PrefixBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 48
 Warning sizes LineLength Line is longer than 120 characters (found 137). 49
 Warning sizes LineLength Line is longer than 120 characters (found 129). 51
 Warning naming ConstantName Name 'unnumberedBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 51
 Warning sizes LineLength Line is longer than 120 characters (found 128). 53
 Warning naming ConstantName Name 'pathKey32Bytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 53
 Warning sizes LineLength Line is longer than 120 characters (found 129). 55
 Warning naming ConstantName Name 'pathKey128Bytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 55
 Warning sizes LineLength Line is longer than 120 characters (found 137). 56
 Warning naming ConstantName Name 'labelBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 58
 Warning sizes LineLength Line is longer than 120 characters (found 121). 68
 Warning sizes LineLength Line is longer than 120 characters (found 138). 95
 Warning sizes LineLength Line is longer than 120 characters (found 131). 96
 Warning sizes LineLength Line is longer than 120 characters (found 121). 98
 Warning sizes LineLength Line is longer than 120 characters (found 122). 125
 Warning sizes LineLength Line is longer than 120 characters (found 121). 152
 Warning sizes LineLength Line is longer than 120 characters (found 139). 176
 Warning sizes LineLength Line is longer than 120 characters (found 132). 177
 Warning sizes LineLength Line is longer than 120 characters (found 122). 180
 Warning sizes LineLength Line is longer than 120 characters (found 147). 210
 Warning sizes LineLength Line is longer than 120 characters (found 121). 211

org/opendaylight/protocol/pcep/impl/PCEPSessionImpl.java

Severity Category Rule Message Line
 Warning javadoc JavadocStyle First sentence should end with a period. 68
 Warning sizes LineLength Line is longer than 120 characters (found 130). 97
 Warning sizes LineLength Line is longer than 120 characters (found 128). 122
 Warning sizes LineLength Line is longer than 120 characters (found 138). 250
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 290
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 291
 Warning whitespace ParenPad '(' is followed by whitespace. 311
 Warning sizes LineLength Line is longer than 120 characters (found 171). 349
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 375
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 418

org/opendaylight/protocol/pcep/impl/PCEPSessionImplTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 157). 37
 Warning sizes LineLength Line is longer than 120 characters (found 122). 77
 Warning sizes LineLength Line is longer than 120 characters (found 127). 93
 Warning sizes LineLength Line is longer than 120 characters (found 150). 98
 Warning sizes LineLength Line is longer than 120 characters (found 136). 115
 Warning sizes LineLength Line is longer than 120 characters (found 130). 140
 Warning sizes LineLength Line is longer than 120 characters (found 132). 141
 Warning sizes LineLength Line is longer than 120 characters (found 128). 151
 Warning sizes LineLength Line is longer than 120 characters (found 130). 152
 Warning coding IllegalCatch Catching 'RuntimeException' is not allowed. 175
 Warning blocks EmptyBlock Empty catch block. 175
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not followed by whitespace. 175
 Warning whitespace WhitespaceAround WhitespaceAround: '}' is not preceded with whitespace. 175

org/opendaylight/protocol/pcep/impl/PCEPSessionNegotiator.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 137). 36
 Warning sizes LineLength Line is longer than 120 characters (found 121). 59
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 66
 Warning sizes LineLength Line is longer than 120 characters (found 133). 77

org/opendaylight/protocol/pcep/impl/PCEPSessionState.java

Severity Category Rule Message Line
 Warning modifier RedundantModifier Redundant 'public' modifier. 42
 Warning sizes LineLength Line is longer than 120 characters (found 135). 112
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '79'. 126

org/opendaylight/protocol/pcep/impl/PCEPTlvParserTest.java

Severity Category Rule Message Line
 Warning naming ConstantName Name 'noPathVectorBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 48
 Warning sizes LineLength Line is longer than 120 characters (found 122). 49
 Warning naming ConstantName Name 'overloadedBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 49
 Warning naming ConstantName Name 'reqMissingBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 50
 Warning sizes LineLength Line is longer than 120 characters (found 134). 51
 Warning naming ConstantName Name 'orderBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 51
 Warning naming ConstantName Name 'ofListBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 53
 Warning sizes LineLength Line is longer than 120 characters (found 188). 70
 Warning sizes LineLength Line is longer than 120 characters (found 122). 129
 Warning sizes LineLength Line is longer than 120 characters (found 129). 132
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 151
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 151
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 157
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 157

org/opendaylight/protocol/pcep/impl/PCEPValidatorTest.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 120 characters (found 152). 191
 Warning sizes LineLength Line is longer than 120 characters (found 254). 196
 Warning sizes LineLength Line is longer than 120 characters (found 158). 203
 Warning sizes LineLength Line is longer than 120 characters (found 204). 211
 Warning sizes LineLength Line is longer than 120 characters (found 158). 223
 Warning sizes LineLength Line is longer than 120 characters (found 139). 237
 Warning sizes LineLength Line is longer than 120 characters (found 173). 250
 Warning sizes LineLength Line is longer than 120 characters (found 172). 251
 Warning sizes LineLength Line is longer than 120 characters (found 152). 260
 Warning sizes LineLength Line is longer than 120 characters (found 128). 284
 Warning sizes LineLength Line is longer than 120 characters (found 175). 291
 Warning sizes LineLength Line is longer than 120 characters (found 244). 312
 Warning sizes LineLength Line is longer than 120 characters (found 148). 319
 Warning sizes LineLength Line is longer than 120 characters (found 123). 340
 Warning sizes LineLength Line is longer than 120 characters (found 129). 342
 Warning sizes LineLength Line is longer than 120 characters (found 129). 354
 Warning sizes LineLength Line is longer than 120 characters (found 121). 362
 Warning sizes LineLength Line is longer than 120 characters (found 148). 366
 Warning sizes LineLength Line is longer than 120 characters (found 129). 368
 Warning sizes LineLength Line is longer than 120 characters (found 123). 374
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 5, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 383
 Warning sizes LineLength Line is longer than 120 characters (found 172). 388
 Warning sizes LineLength Line is longer than 120 characters (found 291). 389
 Warning sizes LineLength Line is longer than 120 characters (found 145). 391
 Warning sizes LineLength Line is longer than 120 characters (found 172). 404
 Warning sizes LineLength Line is longer than 120 characters (found 292). 405
 Warning sizes LineLength Line is longer than 120 characters (found 183). 414
 Warning sizes LineLength Line is longer than 120 characters (found 121). 424
 Warning sizes LineLength Line is longer than 120 characters (found 158). 430
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 4, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 440
 Warning naming LocalVariableName Local variable name 'rBuilder' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 445
 Warning sizes LineLength Line is longer than 120 characters (found 146). 481
 Warning sizes LineLength Line is longer than 120 characters (found 126). 505
 Warning sizes LineLength Line is longer than 120 characters (found 121). 516
 Warning sizes LineLength Line is longer than 120 characters (found 157). 522
 Warning sizes LineLength Line is longer than 120 characters (found 131). 531
 Warning sizes LineLength Line is longer than 120 characters (found 194). 534
 Warning sizes LineLength Line is longer than 120 characters (found 193). 535
 Warning sizes LineLength Line is longer than 120 characters (found 195). 551
 Warning sizes LineLength Line is longer than 120 characters (found 194). 552
 Warning sizes LineLength Line is longer than 120 characters (found 194). 554
 Warning coding VariableDeclarationUsageDistance Distance between variable 'result' declaration and its first usage is 5, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 574
 Warning sizes LineLength Line is longer than 120 characters (found 143). 576
 Warning sizes LineLength Line is longer than 120 characters (found 198). 584
 Warning sizes LineLength Line is longer than 120 characters (found 186). 585
 Warning sizes LineLength Line is longer than 120 characters (found 131). 601
 Warning sizes LineLength Line is longer than 120 characters (found 123). 607
 Warning sizes LineLength Line is longer than 120 characters (found 121). 616
 Warning sizes LineLength Line is longer than 120 characters (found 156). 622
 Warning sizes LineLength Line is longer than 120 characters (found 172). 635
 Warning sizes LineLength Line is longer than 120 characters (found 291). 636
 Warning sizes LineLength Line is longer than 120 characters (found 125). 640
 Warning sizes LineLength Line is longer than 120 characters (found 183). 643
 Warning naming LocalVariableName Local variable name 'rBuilder' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 660
 Warning sizes LineLength Line is longer than 120 characters (found 169). 670
 Warning sizes LineLength Line is longer than 120 characters (found 168). 686
 Warning sizes LineLength Line is longer than 120 characters (found 123). 697
 Warning sizes LineLength Line is longer than 120 characters (found 130). 708
 Warning sizes LineLength Line is longer than 120 characters (found 161). 716
 Warning sizes LineLength Line is longer than 120 characters (found 123). 719
 Warning naming LocalVariableName Local variable name 'rBuilder' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 731
 Warning sizes LineLength Line is longer than 120 characters (found 126). 748
 Warning sizes LineLength Line is longer than 120 characters (found 172). 766
 Warning sizes LineLength Line is longer than 120 characters (found 291). 767
 Warning sizes LineLength Line is longer than 120 characters (found 145). 769
 Warning sizes LineLength Line is longer than 120 characters (found 172). 810
 Warning sizes LineLength Line is longer than 120 characters (found 292). 811
 Warning sizes LineLength Line is longer than 120 characters (found 183). 820

org/opendaylight/protocol/pcep/impl/PCEPXROSubobjectParserTest.java

Severity Category Rule Message Line
 Warning naming AbbreviationAsWordInName Abbreviation in name 'PCEPXROSubobjectParserTest' must contain no more than '5' consecutive capital letters. 46
 Warning sizes LineLength Line is longer than 120 characters (found 128). 48
 Warning naming ConstantName Name 'ip4PrefixBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 48
 Warning sizes LineLength Line is longer than 120 characters (found 128). 50
 Warning naming ConstantName Name 'ip6PrefixBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 50
 Warning sizes LineLength Line is longer than 120 characters (found 137). 51
 Warning sizes LineLength Line is longer than 120 characters (found 151). 53
 Warning naming ConstantName Name 'srlgBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 53
 Warning sizes LineLength Line is longer than 120 characters (found 129). 54
 Warning naming ConstantName Name 'unnumberedBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 54
 Warning naming ConstantName Name 'asNumberBytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 56
 Warning sizes LineLength Line is longer than 120 characters (found 128). 57
 Warning naming ConstantName Name 'pathKey32Bytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 57
 Warning sizes LineLength Line is longer than 120 characters (found 129). 59
 Warning naming ConstantName Name 'pathKey128Bytes' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 59
 Warning sizes LineLength Line is longer than 120 characters (found 137). 60
 Warning sizes LineLength Line is longer than 120 characters (found 128). 71
 Warning sizes LineLength Line is longer than 120 characters (found 138). 98
 Warning sizes LineLength Line is longer than 120 characters (found 131). 99
 Warning sizes LineLength Line is longer than 120 characters (found 127). 101
 Warning sizes LineLength Line is longer than 120 characters (found 131). 126
 Warning sizes LineLength Line is longer than 120 characters (found 122). 127
 Warning sizes LineLength Line is longer than 120 characters (found 128). 154
 Warning sizes LineLength Line is longer than 120 characters (found 141). 178
 Warning sizes LineLength Line is longer than 120 characters (found 126). 179
 Warning sizes LineLength Line is longer than 120 characters (found 127). 207
 Warning sizes LineLength Line is longer than 120 characters (found 139). 232
 Warning sizes LineLength Line is longer than 120 characters (found 132). 233
 Warning sizes LineLength Line is longer than 120 characters (found 128). 236

org/opendaylight/protocol/pcep/impl/PeerRecord.java

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

org/opendaylight/protocol/pcep/impl/SimpleSessionListener.java

Severity Category Rule Message Line
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 49

org/opendaylight/protocol/pcep/impl/SslContextFactoryTest.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'javax.net.ssl.SSLContext' should be separated from previous import group by one line. 12

org/opendaylight/protocol/pcep/impl/TestVendorInformationObjectParser.java

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

org/opendaylight/protocol/pcep/impl/TestVendorInformationTlvParser.java

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

org/opendaylight/protocol/pcep/impl/UtilTest.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 52
 Warning coding IllegalThrows Throwing 'Throwable' is not allowed. 53

org/opendaylight/protocol/pcep/impl/spi/Util.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 23
 Warning javadoc JavadocStyle First sentence should end with a period. 23
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 32
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 32
 Warning sizes LineLength Line is longer than 120 characters (found 160). 42

org/opendaylight/protocol/pcep/impl/tls/SslContextFactory.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 33
 Warning javadoc JavadocStyle Javadoc has empty description section. 33
 Warning sizes LineLength Line is longer than 120 characters (found 127). 60
 Warning sizes LineLength Line is longer than 120 characters (found 125). 62
 Warning sizes LineLength Line is longer than 120 characters (found 145). 64
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 65

org/opendaylight/protocol/pcep/impl/tls/SslKeyStore.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 First sentence should end with a period. 27
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 40
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 41
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 42
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 43
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 44
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 45
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 46
 Warning indentation Indentation 'try' have incorrect indentation level 12, expected level should be 16. 47
 Warning indentation Indentation 'try' child have incorrect indentation level 16, expected level should be 20. 48
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 12, expected level should be 16. 49
 Warning indentation Indentation 'catch' child have incorrect indentation level 16, expected level should be 20. 50
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 12, expected level should be 16. 51
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 52
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 53
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 54