Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
35 0 1378 0

Files

File  I  W  E
org/opendaylight/netvirt/bgpmanager/BgpConfigurationManager.java 0 237 0
org/opendaylight/netvirt/bgpmanager/BgpManager.java 0 12 0
org/opendaylight/netvirt/bgpmanager/BgpUtil.java 0 15 0
org/opendaylight/netvirt/bgpmanager/ConfigureBgpCli.java 0 107 0
org/opendaylight/netvirt/bgpmanager/DisplayBgpConfigCli.java 0 19 0
org/opendaylight/netvirt/bgpmanager/FibDSWriter.java 0 7 0
org/opendaylight/netvirt/bgpmanager/VtyshCli.java 0 69 0
org/opendaylight/netvirt/bgpmanager/commands/Cache.java 0 75 0
org/opendaylight/netvirt/bgpmanager/commands/ClearBgpCli.java 0 22 0
org/opendaylight/netvirt/bgpmanager/commands/Commands.java 0 31 0
org/opendaylight/netvirt/bgpmanager/commands/Connect.java 0 51 0
org/opendaylight/netvirt/bgpmanager/commands/Misc.java 0 66 0
org/opendaylight/netvirt/bgpmanager/commands/Neighbor.java 0 103 0
org/opendaylight/netvirt/bgpmanager/commands/Network.java 0 84 0
org/opendaylight/netvirt/bgpmanager/commands/Router.java 0 92 0
org/opendaylight/netvirt/bgpmanager/commands/Vrf.java 0 74 0
org/opendaylight/netvirt/bgpmanager/oam/BgpAlarmBroadcaster.java 0 6 0
org/opendaylight/netvirt/bgpmanager/oam/BgpAlarmBroadcasterMBean.java 0 1 0
org/opendaylight/netvirt/bgpmanager/oam/BgpAlarmErrorCodes.java 0 9 0
org/opendaylight/netvirt/bgpmanager/oam/BgpAlarmStatus.java 0 5 0
org/opendaylight/netvirt/bgpmanager/oam/BgpAlarms.java 0 13 0
org/opendaylight/netvirt/bgpmanager/oam/BgpCounters.java 0 114 0
org/opendaylight/netvirt/bgpmanager/oam/BgpCountersBroadcaster.java 0 3 0
org/opendaylight/netvirt/bgpmanager/oam/BgpCountersBroadcasterMBean.java 0 1 0
org/opendaylight/netvirt/bgpmanager/oam/BgpJMXAlarmAgent.java 0 12 0
org/opendaylight/netvirt/bgpmanager/oam/BgpNbrControlPathAlarm.java 0 6 0
org/opendaylight/netvirt/bgpmanager/oam/BgpNbrControlPathAlarmMBean.java 0 11 0
org/opendaylight/netvirt/bgpmanager/test/AbstractMockFibManager.java 0 4 0
org/opendaylight/netvirt/bgpmanager/test/BgpManagerTest.java 0 9 0
org/opendaylight/netvirt/bgpmanager/test/MockFibManager.java 0 3 0
org/opendaylight/netvirt/bgpmanager/thrift/client/BgpRouter.java 0 30 0
org/opendaylight/netvirt/bgpmanager/thrift/client/BgpRouterException.java 0 53 0
org/opendaylight/netvirt/bgpmanager/thrift/client/BgpSyncHandle.java 0 19 0
org/opendaylight/netvirt/bgpmanager/thrift/server/BgpThriftService.java 0 15 0

Rules

Category Rule Violations Severity
blocks EmptyBlock
  • tokens: "LITERAL_TRY, LITERAL_CATCH, LITERAL_FINALLY, LITERAL_IF, LITERAL_ELSE, LITERAL_SWITCH"
  • option: "TEXT"
11  Warning
LeftCurly
  • maxLineLength: "100"
4  Warning
NeedBraces 4  Warning
RightCurly
  • tokens: "CLASS_DEF, METHOD_DEF, CTOR_DEF, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO, STATIC_INIT, INSTANCE_INIT"
  • option: "alone"
9  Warning
RightCurly 9  Warning
coding EmptyStatement 1  Warning
IllegalCatch 101  Warning
MissingSwitchDefault 2  Warning
MultipleVariableDeclarations 11  Warning
VariableDeclarationUsageDistance 9  Warning
design MutableException 1  Warning
imports AvoidStarImport 3  Warning
CustomImportOrder
  • thirdPartyPackageRegExp: ".*"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
57  Warning
RedundantImport 2  Warning
UnusedImports 12  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "4"
  • caseIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
200  Warning
misc ArrayTypeStyle 7  Warning
modifier ModifierOrder 12  Warning
RedundantModifier 9  Warning
naming AbbreviationAsWordInName
  • ignoreFinal: "false"
  • allowedAbbreviationLength: "4"
1  Warning
ConstantName 25  Warning
LocalVariableName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
58  Warning
MemberName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
9  Warning
MethodName
  • format: "^[a-z][a-zA-Z0-9_]*$"
2  Warning
MethodName
  • format: "^[a-z][a-zA-Z0-9_]*$"
2  Warning
ParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
7  Warning
regexp RegexpSingleline
  • format: "\s+$"
  • message: "Line has trailing spaces."
81  Error
RegexpSinglelineJava
  • ignoreComments: "false"
  • format: "\.printStackTrace?\("
  • message: "Line contains printStacktrace()."
15  Warning
RegexpSinglelineJava
  • ignoreComments: "false"
  • format: "System\.(out)|(err)\.print(ln)?\("
  • message: "Line contains console output."
97  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
21  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
  • tokens: "IMPORT, CLASS_DEF, INTERFACE_DEF, ENUM_DEF, STATIC_INIT, INSTANCE_INIT, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"
33  Warning
GenericWhitespace 2  Warning
MethodParamPad 17  Warning
OperatorWrap
  • tokens: "BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LOR, LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION, SL, SR, STAR "
  • option: "NL"
22  Warning
SeparatorWrap
  • tokens: "COMMA"
  • option: "EOL"
4  Warning
SeparatorWrap
  • tokens: "DOT"
  • option: "nl"
4  Warning
WhitespaceAround
  • allowEmptyConstructors: "true"
  • allowEmptyMethods: "true"
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
529  Warning

Details

org/opendaylight/netvirt/bgpmanager/BgpConfigurationManager.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.netvirt.bgpmanager.oam.BgpAlarms' import. Should be before 'org.opendaylight.netvirt.bgpmanager.oam.BgpCounters'. 52
 Warning imports RedundantImport Duplicate import to line 49 - org.opendaylight.netvirt.bgpmanager.oam.BgpAlarms. 52
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.genius.utils.batching.DefaultBatchHandler' import. Should be before 'org.opendaylight.yangtools.yang.binding.InstanceIdentifier'. 95
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.atomic.AtomicInteger' import. Should be before 'org.slf4j.LoggerFactory'. 99
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yangtools.yang.binding.DataObject' import. Should be before 'org.slf4j.LoggerFactory'. 100
 Warning imports RedundantImport Duplicate import to line 93 - org.opendaylight.yangtools.yang.binding.DataObject. 100
 Warning naming ConstantName Name 'ipActivationCheckTimer' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 126
 Warning naming MemberName Member name 'StaleStartTime' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 129
 Warning naming MemberName Member name 'StaleEndTime' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 130
 Warning naming MemberName Member name 'CfgReplayStartTime' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 131
 Warning naming MemberName Member name 'CfgReplayEndTime' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 132
 Warning naming MemberName Member name 'StaleCleanupTime' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 133
 Warning naming ConstantName Name 'dsRetryCoount' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 134
 Warning naming ConstantName Name 'waitTimeBetweenEachTryMillis' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 135
 Warning blocks LeftCurly '{' at column 37 should have line break after. 137
 Warning blocks RightCurly '}' at column 89 should be alone on a line. 137
 Warning whitespace WhitespaceAround WhitespaceAround: '}' is not preceded with whitespace. 137
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 138
 Warning naming ConstantName Name 'reactors' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 198
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 199
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 200
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 201
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 202
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 203
 Warning naming LocalVariableName Local variable name 'uPort' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 218
 Warning sizes LineLength Line is longer than 120 characters (found 156). 243
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 265
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 281
 Warning naming LocalVariableName Local variable name 'b' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 299
 Warning naming LocalVariableName Local variable name 's' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 305
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 16, expected level should be one of the following: 24, 28. 322
 Warning indentation Indentation 'method def' child have incorrect indentation level 20, expected level should be one of the following: 28, 32. 324
 Warning indentation Indentation 'if' have incorrect indentation level 20, expected level should be one of the following: 28, 32. 325
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be one of the following: 32, 36. 326
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be one of the following: 32, 36. 327
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be one of the following: 32, 36. 328
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 20, expected level should be one of the following: 28, 32. 329
 Warning indentation Indentation 'else' child have incorrect indentation level 24, expected level should be one of the following: 32, 36. 330
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 20, expected level should be one of the following: 28, 32. 332
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 16, expected level should be one of the following: 24, 28. 333
 Warning indentation Indentation 'object def rcurly' have incorrect indentation level 12, expected level should be one of the following: 20, 24. 334
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 335
 Warning naming ConstantName Name 'addWarn' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 340
 Warning naming ConstantName Name 'delWarn' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 342
 Warning naming ConstantName Name 'updWarn' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 344
 Warning whitespace GenericWhitespace GenericWhitespace '<' is preceded with whitespace. 350
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 351
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 359
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 367
 Warning blocks EmptyBlock Empty catch block. 367
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 391
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 415
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 433
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 441
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 475
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 493
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 508
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 533
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 534
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 543
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 551
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 565
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 583
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 597
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 621
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 631
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 632
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 641
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 649
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 662
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 681
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 695
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 717
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 728
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 729
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 738
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 746
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 764
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 783
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 799
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 819
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 820
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 829
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 837
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 852
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 871
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 886
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 906
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 907
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 916
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 924
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 939
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 958
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 973
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 993
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 994
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 1003
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 1011
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1028
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 1047
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1064
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1084
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 1085
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 1094
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 1099
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 1106
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1126
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 1139
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1161
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 1174
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 1174
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1194
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 1195
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 1206
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 1214
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1230
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 1249
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1264
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1285
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 1286
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 1293
 Warning naming LocalVariableName Local variable name 'process_bgp' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1296
 Warning naming LocalVariableName Local variable name 'process_os' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1297
 Warning naming ConstantName Name 'yangObj' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 1311
 Warning indentation Indentation 'add' have incorrect indentation level 8, expected level should be 12. 1320
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1325
 Warning blocks EmptyBlock Empty catch block. 1325
 Warning indentation Indentation 'remove' have incorrect indentation level 8, expected level should be 12. 1363
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1388
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 1389
 Warning naming LocalVariableName Local variable name 'f' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1395
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1411
 Warning blocks EmptyBlock Empty catch block. 1411
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1415
 Warning blocks EmptyBlock Empty catch block. 1415
 Warning naming LocalVariableName Local variable name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1428
 Warning naming LocalVariableName Local variable name 'n' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1430
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1433
 Warning coding EmptyStatement Empty statement. 1437
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1441
 Warning blocks EmptyBlock Empty catch block. 1441
 Warning naming ParameterName Parameter name 'as_num' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1446
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1450
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1454
 Warning sizes LineLength Line is longer than 120 characters (found 122). 1492
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not preceded with whitespace. 1492
 Warning naming LocalVariableName Local variable name 'route_sync_time' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1498
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1502
 Warning coding IllegalCatch Catching 'Throwable' is not allowed. 1520
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1530
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1538
 Warning naming LocalVariableName Local variable name 'u' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1544
 Warning naming LocalVariableName Local variable name 'stale_fib_rd_map' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1545
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1557
 Warning blocks EmptyBlock Empty catch block. 1557
 Warning naming LocalVariableName Local variable name 'stale_fib_rd_map' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1571
 Warning modifier ModifierOrder 'private' modifier out of order with the JLS suggestions. 1605
 Warning naming ParameterName Parameter name 'n' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1605
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1611
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1620
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1629
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1640
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1676
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1681
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not preceded with whitespace. 1681
 Warning whitespace WhitespaceAround WhitespaceAround: '}' is not followed by whitespace. 1681
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 1681
 Warning whitespace OperatorWrap '+' should be on a new line. 1682
 Warning indentation Indentation 'while rcurly' have incorrect indentation level 9, expected level should be 8. 1686
 Warning indentation Indentation 'method def' child have incorrect indentation level 9, expected level should be 8. 1687
 Warning indentation Indentation 'method def' child have incorrect indentation level 9, expected level should be 8. 1688
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 5, expected level should be 4. 1689
 Warning naming LocalVariableName Local variable name 'a' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1712
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1732
 Warning naming LocalVariableName Local variable name 'l' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1745
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1749
 Warning naming LocalVariableName Local variable name 'g' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1754
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1758
 Warning naming LocalVariableName Local variable name 'v' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1763
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1769
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 1789
 Warning naming LocalVariableName Local variable name 'n' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1794
 Warning indentation Indentation 'startConfig' have incorrect indentation level 4, expected level should be 8. 1817
 Warning indentation Indentation 'startBgp' have incorrect indentation level 4, expected level should be 8. 1828
 Warning whitespace OperatorWrap '?' should be on a new line. 1829
 Warning indentation Indentation 'addLogging' have incorrect indentation level 4, expected level should be 8. 1843
 Warning indentation Indentation 'addGracefulRestart' have incorrect indentation level 4, expected level should be 8. 1853
 Warning indentation Indentation 'addNeighbor' have incorrect indentation level 4, expected level should be 8. 1863
 Warning indentation Indentation 'addUpdateSource' have incorrect indentation level 4, expected level should be 8. 1875
 Warning indentation Indentation 'addEbgpMultihop' have incorrect indentation level 4, expected level should be 8. 1889
 Warning naming ParameterName Parameter name 'nHops' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1889
 Warning indentation Indentation 'addAddressFamily' have incorrect indentation level 4, expected level should be 8. 1902
 Warning naming LocalVariableName Local variable name 'a' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1904
 Warning indentation Indentation 'addPrefix' have incorrect indentation level 4, expected level should be 8. 1917
 Warning indentation Indentation 'addVrf' have incorrect indentation level 4, expected level should be 8. 1930
 Warning indentation Indentation 'delAddressFamily' have incorrect indentation level 4, expected level should be 8. 2000
 Warning naming LocalVariableName Local variable name 'a' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 2002
 Warning sizes LineLength Line is longer than 120 characters (found 134). 2054
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 2056
 Warning sizes LineLength Line is longer than 120 characters (found 128). 2057
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 2063
 Warning naming LocalVariableName Local variable name 'stale_vrfTables' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 2103
 Warning naming LocalVariableName Local variable name 'stale_fib_ent_map' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 2105
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 2125
 Warning coding IllegalCatch Catching 'Throwable' is not allowed. 2141
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 2145
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 2145
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 2148
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 2151
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 2154
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 2157
 Warning blocks LeftCurly '{' at column 45 should have line break after. 2157
 Warning whitespace WhitespaceAround WhitespaceAround: 'return' is not preceded with whitespace. 2157
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not followed by whitespace. 2157
 Warning blocks RightCurly '}' at column 70 should be alone on a line. 2157
 Warning whitespace WhitespaceAround WhitespaceAround: '}' is not preceded with whitespace. 2157
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 2158
 Warning blocks LeftCurly '{' at column 41 should have line break after. 2158
 Warning blocks RightCurly '}' at column 63 should be alone on a line. 2158
 Warning whitespace WhitespaceAround WhitespaceAround: '}' is not preceded with whitespace. 2158
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 2168
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 2168
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 2171
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 2171
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 2171
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 2185
 Warning regexp RegexpSinglelineJava Line contains console output. 2186
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 2187
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 2192
 Warning regexp RegexpSinglelineJava Line contains console output. 2193
 Warning naming LocalVariableName Local variable name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 2199
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 2206
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 2213
 Warning regexp RegexpSinglelineJava Line contains console output. 2214
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 2215
 Warning naming LocalVariableName Local variable name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 2221
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 2228

org/opendaylight/netvirt/bgpmanager/BgpManager.java

Severity Category Rule Message Line
 Warning imports AvoidStarImport Using the '.*' form of import should be avoided - java.util.*. 10
 Warning imports AvoidStarImport Using the '.*' form of import should be avoided - org.opendaylight.netvirt.bgpmanager.oam.*. 15
 Warning naming MemberName Member name 'qBGPrestartTS' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 30
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 50
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 225
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 228
 Warning naming ParameterName Parameter name 'qBGPrestartTS' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 236
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 239
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 242
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 245
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 248
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 251

org/opendaylight/netvirt/bgpmanager/BgpUtil.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType' import. Should be before 'org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException'. 19
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.md.sal.common.api.data.TransactionChainListener' import. Should be before 'org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException'. 20
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.md.sal.common.api.data.TransactionChain' import. Should be before 'org.opendaylight.controller.md.sal.common.api.data.TransactionCommitFailedException'. 21
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.BlockingQueue' import. Should be before 'org.slf4j.LoggerFactory'. 31
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.ExecutionException' import. Should be before 'org.slf4j.LoggerFactory'. 32
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.Executors' import. Should be before 'org.slf4j.LoggerFactory'. 33
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.ExecutorService' import. Should be before 'org.slf4j.LoggerFactory'. 34
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.LinkedBlockingQueue' import. Should be before 'org.slf4j.LoggerFactory'. 35
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.TimeoutException' import. Should be before 'org.slf4j.LoggerFactory'. 36
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.ThreadFactory' import. Should be before 'org.slf4j.LoggerFactory'. 37
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.atomic.AtomicInteger' import. Should be before 'org.slf4j.LoggerFactory'. 38
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 110
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 141
 Warning blocks EmptyBlock Empty catch block. 141
 Warning sizes LineLength Line is longer than 120 characters (found 149). 149

org/opendaylight/netvirt/bgpmanager/ConfigureBgpCli.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 33
 Warning sizes LineLength Line is longer than 120 characters (found 174). 39
 Warning sizes LineLength Line is longer than 120 characters (found 157). 43
 Warning regexp RegexpSingleline Line has trailing spaces. 51
 Warning sizes LineLength Line is longer than 120 characters (found 131). 51
 Warning regexp RegexpSingleline Line has trailing spaces. 55
 Warning regexp RegexpSingleline Line has trailing spaces. 59
 Warning regexp RegexpSingleline Line has trailing spaces. 63
 Warning regexp RegexpSingleline Line has trailing spaces. 67
 Warning regexp RegexpSingleline Line has trailing spaces. 71
 Warning sizes LineLength Line is longer than 120 characters (found 142). 75
 Warning regexp RegexpSinglelineJava Line contains console output. 87
 Warning regexp RegexpSinglelineJava Line contains console output. 89
 Warning sizes LineLength Line is longer than 120 characters (found 162). 89
 Warning whitespace WhitespaceAround WhitespaceAround: 'switch' is not followed by whitespace. 91
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 92
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 93
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 94
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 95
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 96
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 97
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 98
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 99
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 100
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 101
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 102
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 103
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 104
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 105
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 106
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 107
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 108
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 109
 Warning indentation Indentation 'case' child have incorrect indentation level 12, expected level should be 16. 110
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 111
 Warning regexp RegexpSinglelineJava Line contains console output. 111
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 112
 Warning indentation Indentation 'block' child have incorrect indentation level 16, expected level should be 20. 113
 Warning regexp RegexpSinglelineJava Line contains console output. 113
 Warning sizes LineLength Line is longer than 120 characters (found 162). 113
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 115
 Warning regexp RegexpSinglelineJava Line contains console output. 125
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 129
 Warning regexp RegexpSinglelineJava Line contains console output. 130
 Warning regexp RegexpSinglelineJava Line contains console output. 147
 Warning regexp RegexpSinglelineJava Line contains console output. 153
 Warning indentation Indentation 'if' child have incorrect indentation level 10, expected level should be 12. 163
 Warning indentation Indentation 'if' child have incorrect indentation level 10, expected level should be 12. 167
 Warning indentation Indentation 'if' have incorrect indentation level 10, expected level should be 12. 170
 Warning indentation Indentation 'if' child have incorrect indentation level 13, expected level should be 16. 171
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 10, expected level should be 12. 172
 Warning regexp RegexpSinglelineJava Line contains console output. 184
 Warning regexp RegexpSinglelineJava Line contains console output. 191
 Warning regexp RegexpSinglelineJava Line contains console output. 196
 Warning sizes LineLength Line is longer than 120 characters (found 136). 196
 Warning regexp RegexpSinglelineJava Line contains console output. 201
 Warning sizes LineLength Line is longer than 120 characters (found 177). 201
 Warning regexp RegexpSinglelineJava Line contains console output. 206
 Warning regexp RegexpSinglelineJava Line contains console output. 211
 Warning sizes LineLength Line is longer than 120 characters (found 186). 211
 Warning regexp RegexpSinglelineJava Line contains console output. 216
 Warning whitespace OperatorWrap '&&' should be on a new line. 222
 Warning regexp RegexpSinglelineJava Line contains console output. 224
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 227
 Warning regexp RegexpSinglelineJava Line contains console output. 233
 Warning indentation Indentation 'method call' child have incorrect indentation level 10, expected level should be 12. 245
 Warning whitespace WhitespaceAround WhitespaceAround: '?' is not preceded with whitespace. 245
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 249
 Warning regexp RegexpSinglelineJava Line contains console output. 256
 Warning regexp RegexpSinglelineJava Line contains console output. 264
 Warning regexp RegexpSinglelineJava Line contains console output. 274
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 278
 Warning regexp RegexpSinglelineJava Line contains console output. 279
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 287
 Warning regexp RegexpSinglelineJava Line contains console output. 288
 Warning regexp RegexpSinglelineJava Line contains console output. 294
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 294
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 294
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 294
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 294
 Warning regexp RegexpSingleline Line has trailing spaces. 299
 Warning regexp RegexpSinglelineJava Line contains console output. 316
 Warning regexp RegexpSinglelineJava Line contains console output. 320
 Warning misc ArrayTypeStyle Array brackets at illegal position. 323
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 334
 Warning blocks EmptyBlock Empty catch block. 334
 Warning regexp RegexpSinglelineJava Line contains console output. 341
 Warning regexp RegexpSinglelineJava Line contains console output. 343
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 350
 Warning blocks EmptyBlock Empty catch block. 350
 Warning regexp RegexpSinglelineJava Line contains console output. 353
 Warning sizes LineLength Line is longer than 120 characters (found 147). 353
 Warning regexp RegexpSinglelineJava Line contains console output. 355
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 361
 Warning coding MissingSwitchDefault switch without "default" clause. 365
 Warning whitespace WhitespaceAround WhitespaceAround: 'switch' is not followed by whitespace. 365
 Warning regexp RegexpSinglelineJava Line contains console output. 369
 Warning regexp RegexpSinglelineJava Line contains console output. 373
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 373
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 373
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 373
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 373
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 376
 Warning regexp RegexpSinglelineJava Line contains console output. 377

org/opendaylight/netvirt/bgpmanager/DisplayBgpConfigCli.java

Severity Category Rule Message Line
 Warning imports UnusedImports Unused import - java.util.concurrent.Future. 12
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Optional' import. Should be before 'java.util.concurrent.Future'. 14
 Warning imports UnusedImports Unused import - com.google.common.base.Optional. 14
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.genius.utils.clustering.EntityOwnerUtils' import. Should be before 'org.opendaylight.netvirt.bgpmanager.commands.Commands'. 20
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Date' import. Should be before 'org.opendaylight.netvirt.bgpmanager.commands.Commands'. 22
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 24
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 24
 Warning regexp RegexpSinglelineJava Line contains console output. 33
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '?' is not preceded with whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '?' is not followed by whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: ':' is not preceded with whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: ':' is not followed by whitespace. 41
 Warning sizes LineLength Line is longer than 120 characters (found 130). 55
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not preceded with whitespace. 55
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not followed by whitespace. 55
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 69
 Warning blocks EmptyBlock Empty catch block. 69

org/opendaylight/netvirt/bgpmanager/FibDSWriter.java

Severity Category Rule Message Line
 Warning naming ConstantName Name 'logger' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 44
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: 'try' is not followed by whitespace. 54
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 54
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 65
 Warning sizes LineLength Line is longer than 120 characters (found 149). 80

org/opendaylight/netvirt/bgpmanager/VtyshCli.java

Severity Category Rule Message Line
 Warning naming ConstantName Name 'BGPd' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 36
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 43
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 44
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 45
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 46
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 47
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 48
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 49
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 50
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 51
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 52
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 53
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 54
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 55
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 56
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 57
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 58
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 59
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 12, expected level should be 8. 60
 Warning naming ConstantName Name 'logger' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 62
 Warning coding VariableDeclarationUsageDistance Distance between variable 'sArg' 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). 66
 Warning naming LocalVariableName Local variable name 'sArg' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 66
 Warning whitespace OperatorWrap '||' should be on a new line. 68
 Warning regexp RegexpSinglelineJava Line contains console output. 71
 Warning misc ArrayTypeStyle Array brackets at illegal position. 75
 Warning regexp RegexpSinglelineJava Line contains console output. 81
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 85
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 86
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 87
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 88
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 89
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 90
 Warning regexp RegexpSinglelineJava Line contains console output. 90
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 91
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 95
 Warning indentation Indentation 'try' have incorrect indentation level 12, expected level should be 16. 96
 Warning indentation Indentation 'try' child have incorrect indentation level 16, expected level should be 20. 97
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 12, expected level should be 16. 98
 Warning indentation Indentation 'catch' child have incorrect indentation level 16, expected level should be 20. 99
 Warning regexp RegexpSinglelineJava Line contains console output. 99
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 12, expected level should be 16. 100
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 101
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 102
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 103
 Warning coding VariableDeclarationUsageDistance Distance between variable 'prompt' declaration and its first usage is 9, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 120
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 120
 Warning misc ArrayTypeStyle Array brackets at illegal position. 121
 Warning naming LocalVariableName Local variable name 'op_buf' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 122
 Warning misc ArrayTypeStyle Array brackets at illegal position. 122
 Warning naming LocalVariableName Local variable name 'out_to_socket' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 124
 Warning naming LocalVariableName Local variable name 'in_from_socket' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 125
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 127
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 128
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 129
 Warning regexp RegexpSinglelineJava Line contains console output. 139
 Warning regexp RegexpSinglelineJava Line contains console output. 142
 Warning regexp RegexpSinglelineJava Line contains console output. 151
 Warning regexp RegexpSinglelineJava Line contains console output. 160
 Warning regexp RegexpSinglelineJava Line contains console output. 165
 Warning regexp RegexpSinglelineJava Line contains console output. 185
 Warning regexp RegexpSinglelineJava Line contains console output. 186
 Warning regexp RegexpSinglelineJava Line contains console output. 198
 Warning regexp RegexpSinglelineJava Line contains console output. 199
 Warning regexp RegexpSinglelineJava Line contains console output. 217
 Warning regexp RegexpSinglelineJava Line contains console output. 218
 Warning regexp RegexpSinglelineJava Line contains console output. 225
 Warning regexp RegexpSinglelineJava Line contains console output. 226
 Warning regexp RegexpSinglelineJava Line contains console output. 281
 Warning regexp RegexpSinglelineJava Line contains console output. 283

org/opendaylight/netvirt/bgpmanager/commands/Cache.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.PrintStream' import. Should be before 'org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address'. 27
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.List' import. Should be before 'org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Ipv4Address'. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 47
 Warning indentation Indentation 'method call lparen' have incorrect indentation level 12, expected level should be 8. 69
 Warning whitespace MethodParamPad '(' should be on the previous line. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 69
 Warning coding VariableDeclarationUsageDistance Distance between variable 'config' 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). 85
 Warning naming LocalVariableName Local variable name 'list_vrfs' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 86
 Warning naming LocalVariableName Local variable name 'list_nets' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 87
 Warning regexp RegexpSinglelineJava Line contains console output. 88
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 96
 Warning regexp RegexpSinglelineJava Line contains console output. 97
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 97
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 97
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 97
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 97
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 97
 Warning regexp RegexpSinglelineJava Line contains console output. 111
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 111
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 111
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 111
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 111
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 111
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 111
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 24. 112
 Warning naming LocalVariableName Local variable name 'cHost' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 120
 Warning naming LocalVariableName Local variable name 'cPort' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 121
 Warning naming LocalVariableName Local variable name 'a' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 127
 Warning naming LocalVariableName Local variable name 's' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 134
 Warning naming LocalVariableName Local variable name 'g' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 139
 Warning whitespace WhitespaceAround WhitespaceAround: '!=' is not preceded with whitespace. 145
 Warning whitespace WhitespaceAround WhitespaceAround: '!=' is not followed by whitespace. 145
 Warning whitespace WhitespaceAround WhitespaceAround: '?' is not preceded with whitespace. 145
 Warning whitespace WhitespaceAround WhitespaceAround: '?' is not followed by whitespace. 145
 Warning whitespace WhitespaceAround WhitespaceAround: ':' is not preceded with whitespace. 145
 Warning whitespace WhitespaceAround WhitespaceAround: ':' is not followed by whitespace. 145
 Warning naming LocalVariableName Local variable name 'l' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 148
 Warning indentation Indentation 'method call' child have incorrect indentation level 12, expected level should be 16. 151
 Warning naming LocalVariableName Local variable name 'n' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 154
 Warning whitespace OperatorWrap '?' should be on a new line. 172
 Warning naming LocalVariableName Local variable name 'v' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 181
 Warning blocks NeedBraces 'for' construct must use '{}'s. 187
 Warning blocks NeedBraces 'for' construct must use '{}'s. 190

org/opendaylight/netvirt/bgpmanager/commands/ClearBgpCli.java

Severity Category Rule Message Line
 Warning imports UnusedImports Unused import - org.apache.karaf.shell.commands.Option. 21
 Warning regexp RegexpSingleline Line has trailing spaces. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 40
 Warning regexp RegexpSinglelineJava Line contains console output. 53
 Warning regexp RegexpSinglelineJava Line contains console output. 54
 Warning regexp RegexpSinglelineJava Line contains console output. 55
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 62
 Warning regexp RegexpSinglelineJava Line contains console output. 63
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 67
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 67
 Warning regexp RegexpSingleline Line has trailing spaces. 70
 Warning misc ArrayTypeStyle Array brackets at illegal position. 71
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 71
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 79
 Warning regexp RegexpSinglelineJava Line contains console output. 80
 Warning regexp RegexpSingleline Line has trailing spaces. 86
 Warning regexp RegexpSingleline Line has trailing spaces. 91
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 94
 Warning regexp RegexpSinglelineJava Line contains console output. 95
 Warning regexp RegexpSingleline Line has trailing spaces. 118
 Warning regexp RegexpSingleline Line has trailing spaces. 131

org/opendaylight/netvirt/bgpmanager/commands/Commands.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 16
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 16
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 17
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 17
 Warning regexp RegexpSingleline Line has trailing spaces. 33
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 35
 Warning regexp RegexpSinglelineJava Line contains console output. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 37
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 44
 Warning regexp RegexpSinglelineJava Line contains console output. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 50
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 50
 Warning regexp RegexpSinglelineJava Line contains console output. 62
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 68
 Warning coding MissingSwitchDefault switch without "default" clause. 72
 Warning whitespace WhitespaceAround WhitespaceAround: 'switch' is not followed by whitespace. 72
 Warning regexp RegexpSinglelineJava Line contains console output. 76
 Warning regexp RegexpSinglelineJava Line contains console output. 80
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 80
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 80
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 80
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 80
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 83
 Warning regexp RegexpSinglelineJava Line contains console output. 84

org/opendaylight/netvirt/bgpmanager/commands/Connect.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 23
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 23
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 23
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 23
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 24
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 24
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 27
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 27
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 27
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 27
 Warning regexp RegexpSingleline Line has trailing spaces. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 32
 Warning regexp RegexpSingleline Line has trailing spaces. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 34
 Warning regexp RegexpSinglelineJava Line contains console output. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 39
 Warning regexp RegexpSingleline Line has trailing spaces. 41
 Warning regexp RegexpSingleline Line has trailing spaces. 50
 Warning regexp RegexpSinglelineJava Line contains console output. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 52
 Warning regexp RegexpSingleline Line has trailing spaces. 62
 Warning regexp RegexpSinglelineJava Line contains console output. 64
 Warning regexp RegexpSingleline Line has trailing spaces. 69

org/opendaylight/netvirt/bgpmanager/commands/Misc.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 24
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 24
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 24
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 24
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 25
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 25
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 28
 Warning regexp RegexpSingleline Line has trailing spaces. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 33
 Warning regexp RegexpSingleline Line has trailing spaces. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 35
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 35
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 38
 Warning regexp RegexpSingleline Line has trailing spaces. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 40
 Warning regexp RegexpSinglelineJava Line contains console output. 44
 Warning indentation Indentation 'method call' child have incorrect indentation level 8, expected level should be 12. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 45
 Warning indentation Indentation 'method call' child have incorrect indentation level 8, expected level should be 12. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 46
 Warning regexp RegexpSingleline Line has trailing spaces. 48
 Warning regexp RegexpSingleline Line has trailing spaces. 59
 Warning regexp RegexpSingleline Line has trailing spaces. 61
 Warning regexp RegexpSingleline Line has trailing spaces. 78
 Warning regexp RegexpSinglelineJava Line contains console output. 79
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 79
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 79
 Warning regexp RegexpSingleline Line has trailing spaces. 84
 Warning naming LocalVariableName Local variable name 's' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 86
 Warning blocks NeedBraces 'if' construct must use '{}'s. 89
 Warning regexp RegexpSingleline Line has trailing spaces. 89
 Warning regexp RegexpSingleline Line has trailing spaces. 92
 Warning regexp RegexpSingleline Line has trailing spaces. 100

org/opendaylight/netvirt/bgpmanager/commands/Neighbor.java

Severity Category Rule Message Line
 Warning regexp RegexpSingleline Line has trailing spaces. 27
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 28
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 32
 Warning regexp RegexpSingleline Line has trailing spaces. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 34
 Warning regexp RegexpSingleline Line has trailing spaces. 35
 Warning regexp RegexpSingleline Line has trailing spaces. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 37
 Warning regexp RegexpSingleline Line has trailing spaces. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 39
 Warning regexp RegexpSingleline Line has trailing spaces. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 42
 Warning regexp RegexpSingleline Line has trailing spaces. 43
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 43
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 43
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 44
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 44
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 44
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 44
 Warning naming MemberName Member name 'nHops' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 45
 Warning regexp RegexpSingleline Line has trailing spaces. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 47
 Warning regexp RegexpSingleline Line has trailing spaces. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 49
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 49
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 49
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 49
 Warning regexp RegexpSingleline Line has trailing spaces. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 52
 Warning regexp RegexpSingleline Line has trailing spaces. 53
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 53
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 53
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 54
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 54
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 54
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 54
 Warning regexp RegexpSinglelineJava Line contains console output. 58
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning regexp RegexpSingleline Line has trailing spaces. 62
 Warning regexp RegexpSinglelineJava Line contains console output. 73
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 73
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 73
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 73
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 73
 Warning regexp RegexpSinglelineJava Line contains console output. 77
 Warning regexp RegexpSingleline Line has trailing spaces. 101
 Warning regexp RegexpSinglelineJava Line contains console output. 109
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 109
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 109
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 109
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 109
 Warning regexp RegexpSingleline Line has trailing spaces. 114
 Warning regexp RegexpSingleline Line has trailing spaces. 117
 Warning regexp RegexpSinglelineJava Line contains console output. 119
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 119
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 119
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 119
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 119
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 126
 Warning regexp RegexpSinglelineJava Line contains console output. 127
 Warning regexp RegexpSingleline Line has trailing spaces. 131

org/opendaylight/netvirt/bgpmanager/commands/Network.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.List' import. Should be before 'org.slf4j.LoggerFactory'. 21
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 33
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 38
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 43
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 43
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 43
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 43
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 53
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 53
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 53
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 53
 Warning regexp RegexpSinglelineJava Line contains console output. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 61
 Warning regexp RegexpSinglelineJava Line contains console output. 75
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 75
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 75
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 75
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 75
 Warning regexp RegexpSinglelineJava Line contains console output. 79
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 79
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 79
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 79
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 79
 Warning regexp RegexpSinglelineJava Line contains console output. 95
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 95
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 95
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 95
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 95
 Warning regexp RegexpSinglelineJava Line contains console output. 104
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 104
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 104
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 104
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 104
 Warning regexp RegexpSinglelineJava Line contains console output. 108

org/opendaylight/netvirt/bgpmanager/commands/Router.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 25
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 25
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 25
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 25
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 26
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 26
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 29
 Warning regexp RegexpSingleline Line has trailing spaces. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 31
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 31
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 31
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 31
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 34
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 34
 Warning regexp RegexpSingleline Line has trailing spaces. 35
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 35
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 35
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 39
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 39
 Warning regexp RegexpSingleline Line has trailing spaces. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 44
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 44
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 44
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 44
 Warning regexp RegexpSingleline Line has trailing spaces. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 46
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 46
 Warning regexp RegexpSinglelineJava Line contains console output. 50
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 51
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 52
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 52
 Warning regexp RegexpSingleline Line has trailing spaces. 54
 Warning regexp RegexpSingleline Line has trailing spaces. 63
 Warning naming LocalVariableName Local variable name 's' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 66
 Warning regexp RegexpSingleline Line has trailing spaces. 67
 Warning regexp RegexpSinglelineJava Line contains console output. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 69
 Warning regexp RegexpSingleline Line has trailing spaces. 76
 Warning whitespace OperatorWrap '&&' should be on a new line. 76
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 77
 Warning regexp RegexpSingleline Line has trailing spaces. 89
 Warning regexp RegexpSingleline Line has trailing spaces. 92
 Warning regexp RegexpSingleline Line has trailing spaces. 95
 Warning regexp RegexpSinglelineJava Line contains console output. 96
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 96
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 96
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 96
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 96
 Warning regexp RegexpSingleline Line has trailing spaces. 99
 Warning regexp RegexpSingleline Line has trailing spaces. 102
 Warning whitespace OperatorWrap '||' should be on a new line. 104
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 20. 105
 Warning regexp RegexpSinglelineJava Line contains console output. 106
 Warning regexp RegexpSingleline Line has trailing spaces. 110

org/opendaylight/netvirt/bgpmanager/commands/Vrf.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.List' import. Should be before 'org.opendaylight.netvirt.bgpmanager.BgpManager'. 17
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 26
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 26
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 26
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 26
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 27
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 27
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 30
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 30
 Warning regexp RegexpSingleline Line has trailing spaces. 31
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 31
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 31
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 32
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 35
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 35
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 35
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 35
 Warning regexp RegexpSingleline Line has trailing spaces. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 37
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 40
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 40
 Warning regexp RegexpSingleline Line has trailing spaces. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 41
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 42
 Warning regexp RegexpSinglelineJava Line contains console output. 46
 Warning regexp RegexpSingleline Line has trailing spaces. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 47
 Warning whitespace OperatorWrap '+' should be on a new line. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 47
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 48
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 48
 Warning regexp RegexpSingleline Line has trailing spaces. 50
 Warning regexp RegexpSingleline Line has trailing spaces. 59
 Warning regexp RegexpSinglelineJava Line contains console output. 61
 Warning regexp RegexpSingleline Line has trailing spaces. 67
 Warning regexp RegexpSinglelineJava Line contains console output. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 69
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 69
 Warning regexp RegexpSinglelineJava Line contains console output. 73
 Warning regexp RegexpSingleline Line has trailing spaces. 77
 Warning regexp RegexpSingleline Line has trailing spaces. 78

org/opendaylight/netvirt/bgpmanager/oam/BgpAlarmBroadcaster.java

Severity Category Rule Message Line
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 25
 Warning coding VariableDeclarationUsageDistance Distance between variable 'n' 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). 42
 Warning naming LocalVariableName Local variable name 'n' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 42
 Warning coding VariableDeclarationUsageDistance Distance between variable 'alarmSrc' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 43
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 43
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 57

org/opendaylight/netvirt/bgpmanager/oam/BgpAlarmBroadcasterMBean.java

Severity Category Rule Message Line
 Warning modifier RedundantModifier Redundant 'public' modifier. 17

org/opendaylight/netvirt/bgpmanager/oam/BgpAlarmErrorCodes.java

Severity Category Rule Message Line
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 18
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 19
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 20
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 21
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 22
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 23
 Warning naming ConstantName Name 'intToTypeMap' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 33
 Warning naming ParameterName Parameter name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 45
 Warning blocks NeedBraces 'if' construct must use '{}'s. 47

org/opendaylight/netvirt/bgpmanager/oam/BgpAlarmStatus.java

Severity Category Rule Message Line
 Warning imports UnusedImports Unused import - java.util.HashMap. 11
 Warning imports UnusedImports Unused import - java.util.Map. 12
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 18
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 19
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 20

org/opendaylight/netvirt/bgpmanager/oam/BgpAlarms.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'java.util.Date' should be separated from previous import group. 16
 Warning imports UnusedImports Unused import - java.util.Date. 16
 Warning naming ConstantName Name 'logger' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 28
 Warning naming ConstantName Name 'alarmAgent' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 30
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 38
 Warning whitespace OperatorWrap '&&' should be on a new line. 45
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 50
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 57
 Warning whitespace OperatorWrap '&&' should be on a new line. 65
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 101
 Warning whitespace OperatorWrap '||' should be on a new line. 105
 Warning whitespace OperatorWrap '||' should be on a new line. 114
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 125

org/opendaylight/netvirt/bgpmanager/oam/BgpCounters.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.BufferedReader' import. Should be before 'javax.management.ObjectName'. 14
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.BufferedWriter' import. Should be before 'javax.management.ObjectName'. 15
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.File' import. Should be before 'javax.management.ObjectName'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.FileWriter' import. Should be before 'javax.management.ObjectName'. 17
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.IOException' import. Should be before 'javax.management.ObjectName'. 18
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.InputStreamReader' import. Should be before 'javax.management.ObjectName'. 19
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.PrintWriter' import. Should be before 'javax.management.ObjectName'. 20
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.lang.management.ManagementFactory' import. Should be before 'javax.management.ObjectName'. 21
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.net.Socket' import. Should be before 'javax.management.ObjectName'. 22
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.net.SocketException' import. Should be before 'javax.management.ObjectName'. 23
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.net.SocketTimeoutException' import. Should be before 'javax.management.ObjectName'. 24
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.net.UnknownHostException' import. Should be before 'javax.management.ObjectName'. 25
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.ArrayList' import. Should be before 'javax.management.ObjectName'. 26
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Date' import. Should be before 'javax.management.ObjectName'. 27
 Warning imports UnusedImports Unused import - java.util.Date. 27
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.HashMap' import. Should be before 'javax.management.ObjectName'. 28
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Iterator' import. Should be before 'javax.management.ObjectName'. 29
 Warning imports UnusedImports Unused import - java.util.Iterator. 29
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.List' import. Should be before 'javax.management.ObjectName'. 30
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Map' import. Should be before 'javax.management.ObjectName'. 31
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Scanner' import. Should be before 'javax.management.ObjectName'. 32
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.TimerTask' import. Should be before 'javax.management.ObjectName'. 33
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.regex.Matcher' import. Should be before 'javax.management.ObjectName'. 34
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.regex.Pattern' import. Should be before 'javax.management.ObjectName'. 35
 Warning imports UnusedImports Unused import - org.opendaylight.netvirt.bgpmanager.BgpManager. 36
 Warning whitespace GenericWhitespace GenericWhitespace '<' is preceded with whitespace. 49
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 57
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 84
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 89
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 95
 Warning naming LocalVariableName Local variable name 'out_to_socket' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 100
 Warning naming LocalVariableName Local variable name 'in_from_socket' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 101
 Warning misc ArrayTypeStyle Array brackets at illegal position. 102
 Warning naming LocalVariableName Local variable name 'op_buf' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 103
 Warning misc ArrayTypeStyle Array brackets at illegal position. 103
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 105
 Warning coding VariableDeclarationUsageDistance Distance between variable 'temp' declaration and its first usage is 13, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 106
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 107
 Warning coding VariableDeclarationUsageDistance Distance between variable 'vtyPassword' 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). 108
 Warning coding VariableDeclarationUsageDistance Distance between variable 'enableString' 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). 110
 Warning coding VariableDeclarationUsageDistance Distance between variable 'prompt' 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). 111
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 111
 Warning blocks LeftCurly '{' at column 9 should be on the previous line. 114
 Warning blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 117
 Warning blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 121
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not preceded with whitespace. 127
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not followed by whitespace. 127
 Warning blocks RightCurly '}' at column 13 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 139
 Warning blocks RightCurly '}' at column 13 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 144
 Warning blocks RightCurly '}' at column 13 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 168
 Warning blocks RightCurly '}' at column 13 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 197
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 245
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 269
 Warning regexp RegexpSinglelineJava Line contains printStacktrace(). 278
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 283
 Warning naming AbbreviationAsWordInName Abbreviation in name 'PATTERN' must contain no more than '4' capital letters. 287
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 313
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 314
 Warning naming LocalVariableName Local variable name 'StrIP' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 317
 Warning naming LocalVariableName Local variable name 'NbrInfoKey' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 331
 Warning indentation Indentation 'try' have incorrect indentation level 15, expected level should be 16. 339
 Warning whitespace SeparatorWrap '.' should be on a new line. 349
 Warning whitespace SeparatorWrap '.' should be on a new line. 355
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 358
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 1, expected level should be 4. 364
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 377
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 378
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 379
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 380
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 381
 Warning indentation Indentation 'try' have incorrect indentation level 7, expected level should be 8. 382
 Warning indentation Indentation 'try' child have incorrect indentation level 11, expected level should be 12. 383
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 7, expected level should be 8. 384
 Warning indentation Indentation 'catch' child have incorrect indentation level 11, expected level should be 12. 385
 Warning regexp RegexpSinglelineJava Line contains console output. 385
 Warning indentation Indentation 'catch' child have incorrect indentation level 11, expected level should be 12. 386
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 7, expected level should be 8. 387
 Warning indentation Indentation 'while' have incorrect indentation level 7, expected level should be 8. 388
 Warning indentation Indentation 'while' child have incorrect indentation level 11, expected level should be 12. 390
 Warning indentation Indentation 'while' child have incorrect indentation level 11, expected level should be 12. 391
 Warning indentation Indentation 'while rcurly' have incorrect indentation level 7, expected level should be 8. 392
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 394
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 394
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 395
 Warning indentation Indentation 'while' have incorrect indentation level 7, expected level should be 8. 396
 Warning indentation Indentation 'while' child have incorrect indentation level 11, expected level should be 12. 397
 Warning indentation Indentation 'if' have incorrect indentation level 11, expected level should be 12. 398
 Warning indentation Indentation 'if' child have incorrect indentation level 15, expected level should be 16. 399
 Warning indentation Indentation 'try' have incorrect indentation level 15, expected level should be 16. 400
 Warning indentation Indentation 'try' child have incorrect indentation level 19, expected level should be 20. 401
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 15, expected level should be 16. 402
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 402
 Warning indentation Indentation 'catch' child have incorrect indentation level 19, expected level should be 20. 403
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 15, expected level should be 16. 404
 Warning indentation Indentation 'if' child have incorrect indentation level 15, expected level should be 16. 405
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 11, expected level should be 12. 406
 Warning indentation Indentation 'while' child have incorrect indentation level 11, expected level should be 12. 407
 Warning indentation Indentation 'while rcurly' have incorrect indentation level 7, expected level should be 8. 408
 Warning regexp RegexpSinglelineJava Line contains console output. 439
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 446
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 447
 Warning coding MultipleVariableDeclarations Each variable declaration must be in its own statement. 466
 Warning naming LocalVariableName Local variable name 'route_count' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 466
 Warning whitespace OperatorWrap '&&' should be on a new line. 471
 Warning whitespace WhitespaceAround WhitespaceAround: '<' is not followed by whitespace. 472
 Warning whitespace SeparatorWrap '.' should be on a new line. 475
 Warning whitespace SeparatorWrap '.' should be on a new line. 495
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 500
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 504
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 522
 Warning naming LocalVariableName Local variable name 'i' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 534
 Warning naming LocalVariableName Local variable name 'StrIP' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 537
 Warning naming LocalVariableName Local variable name 'state_pfxRcvd' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 565
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 567

org/opendaylight/netvirt/bgpmanager/oam/BgpCountersBroadcaster.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.HashMap' import. Should be before 'org.slf4j.LoggerFactory'. 15
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Iterator' import. Should be before 'org.slf4j.LoggerFactory'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Map' import. Should be before 'org.slf4j.LoggerFactory'. 17

org/opendaylight/netvirt/bgpmanager/oam/BgpCountersBroadcasterMBean.java

Severity Category Rule Message Line
 Warning modifier RedundantModifier Redundant 'public' modifier. 17

org/opendaylight/netvirt/bgpmanager/oam/BgpJMXAlarmAgent.java

Severity Category Rule Message Line
 Warning imports AvoidStarImport Using the '.*' form of import should be avoided - javax.management.*. 17
 Warning imports CustomImportOrder Wrong lexicographical order for 'javax.management.*' import. Should be before 'org.slf4j.LoggerFactory'. 17
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.lang.management.ManagementFactory' import. Should be before 'org.slf4j.LoggerFactory'. 18
 Warning whitespace EmptyLineSeparator 'CLASS_DEF' should be separated from previous statement. 19
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 24
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 44
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 44
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 55
 Warning sizes LineLength Line is longer than 120 characters (found 168). 62
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 64
 Warning sizes LineLength Line is longer than 120 characters (found 168). 71
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 73

org/opendaylight/netvirt/bgpmanager/oam/BgpNbrControlPathAlarm.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.ArrayList' import. Should be before 'javax.management.NotificationBroadcasterSupport'. 17
 Warning naming LocalVariableName Local variable name 'n' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 28
 Warning naming LocalVariableName Local variable name 'n' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 42
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 53
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 60
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 60

org/opendaylight/netvirt/bgpmanager/oam/BgpNbrControlPathAlarmMBean.java

Severity Category Rule Message Line
 Warning modifier RedundantModifier Redundant 'public' modifier. 17
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 18
 Warning modifier RedundantModifier Redundant 'public' modifier. 18
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 19
 Warning modifier RedundantModifier Redundant 'public' modifier. 19
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 20
 Warning modifier RedundantModifier Redundant 'public' modifier. 20
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 21
 Warning modifier RedundantModifier Redundant 'public' modifier. 21
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 22
 Warning modifier RedundantModifier Redundant 'public' modifier. 22

org/opendaylight/netvirt/bgpmanager/test/AbstractMockFibManager.java

Severity Category Rule Message Line
 Warning imports UnusedImports Unused import - org.opendaylight.controller.md.sal.binding.api.DataObjectModification. 12
 Warning imports UnusedImports Unused import - org.opendaylight.yangtools.yang.binding.InstanceIdentifier. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.google.common.base.Preconditions' import. Should be before 'org.opendaylight.yangtools.yang.binding.InstanceIdentifier'. 18
 Warning imports UnusedImports Unused import - com.google.common.base.Preconditions. 18

org/opendaylight/netvirt/bgpmanager/test/BgpManagerTest.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.md.sal.binding.api.DataBroker' import. Should be before 'org.opendaylight.netvirt.bgpmanager.FibDSWriter'. 19
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.controller.md.sal.binding.test.AbstractDataBrokerTest' import. Should be before 'org.opendaylight.netvirt.bgpmanager.FibDSWriter'. 20
 Warning imports CustomImportOrder Import statement for 'org.junit.Assert.assertEquals' is in the wrong order. Should be in the 'STATIC' group, expecting not assigned imports on this line. 23
 Warning whitespace WhitespaceAround WhitespaceAround: 'try' is not followed by whitespace. 58
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 58
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not preceded with whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: '}' is not followed by whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 61

org/opendaylight/netvirt/bgpmanager/test/MockFibManager.java

Severity Category Rule Message Line
 Warning naming MemberName Member name 'nFibEntries' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 25
 Warning sizes LineLength Line is longer than 120 characters (found 132). 35
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 38

org/opendaylight/netvirt/bgpmanager/thrift/client/BgpRouter.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.apache.thrift.TException' import. Should be before 'org.apache.thrift.protocol.TProtocol'. 13
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.List' import. Should be before 'org.slf4j.LoggerFactory'. 24
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. 29
 Warning whitespace EmptyLineSeparator ';' should be separated from previous statement. 66
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 68
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 69
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 70
 Warning naming ConstantName Name 'ignore' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 81
 Warning whitespace EmptyLineSeparator 'CTOR_DEF' should be separated from previous statement. 82
 Warning modifier RedundantModifier Redundant 'public' modifier. 82
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 99
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 99
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 99
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 99
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 99
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 99
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 120
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 120
 Warning whitespace OperatorWrap '?' should be on a new line. 158
 Warning whitespace OperatorWrap '?' should be on a new line. 163
 Warning whitespace OperatorWrap '?' should be on a new line. 170
 Warning whitespace OperatorWrap '?' should be on a new line. 179
 Warning whitespace OperatorWrap '?' should be on a new line. 184
 Warning whitespace OperatorWrap '?' should be on a new line. 192
 Warning whitespace OperatorWrap '?' should be on a new line. 197
 Warning naming LocalVariableName Local variable name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 324
 Warning whitespace OperatorWrap '?' should be on a new line. 328
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not preceded with whitespace. 331
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not followed by whitespace. 331

org/opendaylight/netvirt/bgpmanager/thrift/client/BgpRouterException.java

Severity Category Rule Message Line
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 14
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 15
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 16
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 19
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 20
 Warning regexp RegexpSingleline Line has trailing spaces. 21
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 21
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 22
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 23
 Warning design MutableException The field 'errcode' must be declared final. 25
 Warning indentation Indentation 'method def' child have incorrect indentation level 6, expected level should be 8. 36
 Warning naming LocalVariableName Local variable name 's' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 36
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. 36
 Warning indentation Indentation 'switch' have incorrect indentation level 6, expected level should be 8. 38
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 39
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 40
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 41
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 42
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 43
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 44
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 45
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 46
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 47
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 48
 Warning regexp RegexpSingleline Line has trailing spaces. 48
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 49
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 50
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 51
 Warning regexp RegexpSingleline Line has trailing spaces. 51
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 52
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 53
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 54
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 55
 Warning whitespace OperatorWrap '+' should be on a new line. 55
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 55
 Warning indentation Indentation 'block' child have incorrect indentation level 17, expected level should be 20. 56
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 57
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 58
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 59
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 60
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 61
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 62
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 63
 Warning indentation Indentation 'case' child have incorrect indentation level 8, expected level should be 12. 64
 Warning regexp RegexpSingleline Line has trailing spaces. 64
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 65
 Warning indentation Indentation 'block' child have incorrect indentation level 12, expected level should be 16. 66
 Warning indentation Indentation 'switch rcurly' have incorrect indentation level 5, expected level should be 8. 67
 Warning indentation Indentation 'method def' child have incorrect indentation level 5, expected level should be 8. 68
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 3, expected level should be 4. 69

org/opendaylight/netvirt/bgpmanager/thrift/client/BgpSyncHandle.java

Severity Category Rule Message Line
 Warning regexp RegexpSingleline Line has trailing spaces. 32
 Warning indentation Indentation 'if' have incorrect indentation level 7, expected level should be 8. 37
 Warning indentation Indentation 'if' child have incorrect indentation level 11, expected level should be 12. 38
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 7, expected level should be 8. 39
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 40
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 44
 Warning whitespace WhitespaceAround WhitespaceAround: '/' is not preceded with whitespace. 61
 Warning whitespace WhitespaceAround WhitespaceAround: '/' is not followed by whitespace. 61
 Warning regexp RegexpSingleline Line has trailing spaces. 68
 Warning regexp RegexpSingleline Line has trailing spaces. 69
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 71
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 75
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 76
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 77
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 81
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 82
 Warning indentation Indentation 'method def' child have incorrect indentation level 7, expected level should be 8. 83
 Warning regexp RegexpSingleline Line has trailing spaces. 87
 Warning regexp RegexpSingleline Line has trailing spaces. 88

org/opendaylight/netvirt/bgpmanager/thrift/server/BgpThriftService.java

Severity Category Rule Message Line
 Warning naming MemberName Member name 'stale_vrfTables' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 37
 Warning whitespace EmptyLineSeparator 'CTOR_DEF' should be separated from previous statement. 49
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 52
 Warning whitespace EmptyLineSeparator 'CLASS_DEF' should be separated from previous statement. 56
 Warning naming MethodName Method Name 'BgpUpdateServer' must not equal the enclosing class name. 60
 Warning naming MethodName Method name 'BgpUpdateServer' must match pattern '^[a-z][a-zA-Z0-9_]*$'. 60
 Warning coding IllegalCatch Catching 'Throwable' is not allowed. 93
 Warning blocks EmptyBlock Empty catch block. 93
 Warning sizes LineLength Line is longer than 120 characters (found 132). 112
 Warning coding IllegalCatch Catching 'Exception' is not allowed. 117
 Warning coding IllegalCatch Catching 'Throwable' is not allowed. 126
 Warning coding IllegalCatch Catching 'Throwable' is not allowed. 137
 Warning coding IllegalCatch Catching 'Throwable' is not allowed. 147
 Warning regexp RegexpSingleline Line has trailing spaces. 171
 Warning regexp RegexpSingleline Line has trailing spaces. 172