Checkstyle Results

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

Summary

Files  Info  Warnings  Errors
91 0 193 0

Files

File  I  W  E
org/opendaylight/ovsdb/lib/OvsdbClient.java 0 1 0
org/opendaylight/ovsdb/lib/OvsdbConnection.java 0 4 0
org/opendaylight/ovsdb/lib/OvsdbConnectionInfo.java 0 8 0
org/opendaylight/ovsdb/lib/impl/FutureTransformUtils.java 0 3 0
org/opendaylight/ovsdb/lib/impl/OvsdbClientImpl.java 0 12 0
org/opendaylight/ovsdb/lib/impl/OvsdbConnectionService.java 0 21 0
org/opendaylight/ovsdb/lib/impl/StalePassiveConnectionService.java 0 8 0
org/opendaylight/ovsdb/lib/jsonrpc/ExceptionHandler.java 0 1 0
org/opendaylight/ovsdb/lib/jsonrpc/JsonRpc10Request.java 0 1 0
org/opendaylight/ovsdb/lib/jsonrpc/JsonRpc10Response.java 0 1 0
org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcDecoder.java 0 3 0
org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcEncoder.java 0 1 0
org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcEndpoint.java 0 14 0
org/opendaylight/ovsdb/lib/jsonrpc/JsonUtils.java 0 2 0
org/opendaylight/ovsdb/lib/message/MonitorRequest.java 0 2 0
org/opendaylight/ovsdb/lib/message/MonitorRequestBuilder.java 0 3 0
org/opendaylight/ovsdb/lib/message/MonitorSelect.java 0 1 0
org/opendaylight/ovsdb/lib/message/OvsdbRPC.java 0 2 0
org/opendaylight/ovsdb/lib/message/TableUpdate.java 0 4 0
org/opendaylight/ovsdb/lib/message/TableUpdates.java 0 1 0
org/opendaylight/ovsdb/lib/message/TransactBuilder.java 0 1 0
org/opendaylight/ovsdb/lib/message/TransactResponse.java 0 1 0
org/opendaylight/ovsdb/lib/message/UpdateNotification.java 0 1 0
org/opendaylight/ovsdb/lib/notation/Column.java 0 1 0
org/opendaylight/ovsdb/lib/notation/Condition.java 0 1 0
org/opendaylight/ovsdb/lib/notation/Mutation.java 0 1 0
org/opendaylight/ovsdb/lib/notation/OvsdbMap.java 0 1 0
org/opendaylight/ovsdb/lib/notation/OvsdbSet.java 0 1 0
org/opendaylight/ovsdb/lib/notation/Row.java 0 4 0
org/opendaylight/ovsdb/lib/notation/UUID.java 0 2 0
org/opendaylight/ovsdb/lib/notation/Version.java 0 2 0
org/opendaylight/ovsdb/lib/notation/json/ConditionSerializer.java 0 1 0
org/opendaylight/ovsdb/lib/notation/json/MutationSerializer.java 0 1 0
org/opendaylight/ovsdb/lib/notation/json/OvsdbMapSerializer.java 0 2 0
org/opendaylight/ovsdb/lib/notation/json/OvsdbSetSerializer.java 0 2 0
org/opendaylight/ovsdb/lib/notation/json/RowSerializer.java 0 2 0
org/opendaylight/ovsdb/lib/notation/json/UUIDSerializer.java 0 2 0
org/opendaylight/ovsdb/lib/notation/json/UUIDStringConverter.java 0 1 0
org/opendaylight/ovsdb/lib/operations/Delete.java 0 1 0
org/opendaylight/ovsdb/lib/operations/Insert.java 0 6 0
org/opendaylight/ovsdb/lib/operations/Mutate.java 0 3 0
org/opendaylight/ovsdb/lib/operations/OperationResult.java 0 1 0
org/opendaylight/ovsdb/lib/operations/Select.java 0 1 0
org/opendaylight/ovsdb/lib/operations/TransactionBuilder.java 0 1 0
org/opendaylight/ovsdb/lib/operations/Update.java 0 6 0
org/opendaylight/ovsdb/lib/schema/BaseType.java 0 2 0
org/opendaylight/ovsdb/lib/schema/ColumnSchema.java 0 4 0
org/opendaylight/ovsdb/lib/schema/DatabaseSchema.java 0 10 0
org/opendaylight/ovsdb/lib/schema/GenericTableSchema.java 0 4 0
org/opendaylight/ovsdb/lib/schema/TableSchema.java 0 15 0
org/opendaylight/ovsdb/lib/schema/typed/TypedColumn.java 0 6 0
org/opendaylight/ovsdb/lib/schema/typed/TypedTable.java 0 5 0
org/opendaylight/ovsdb/lib/schema/typed/TyperUtils.java 0 8 0

Rules

Category Rule Violations Severity
imports CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###STANDARD_JAVA_PACKAGE###THIRD_PARTY_PACKAGE###SPECIAL_IMPORTS"
  • thirdPartyPackageRegExp: ".*"
  • specialImportsRegExp: "^com.*"
120  Warning
javadoc JavadocMethod
  • allowMissingParamTags: "true"
  • allowedAnnotations: "Override, Test"
  • allowThrowsTagsForSubclasses: "true"
  • scope: "public"
  • allowMissingReturnTag: "true"
  • minLineCount: "2"
  • allowMissingThrowsTags: "true"
58  Warning
naming AbbreviationAsWordInName
  • allowedAbbreviationLength: "1"
  • ignoreFinal: "false"
6  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
9  Warning

Details

org/opendaylight/ovsdb/lib/OvsdbClient.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12

org/opendaylight/ovsdb/lib/OvsdbConnection.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13

org/opendaylight/ovsdb/lib/OvsdbConnectionInfo.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning javadoc JavadocMethod Missing a Javadoc comment. 68

org/opendaylight/ovsdb/lib/impl/FutureTransformUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning javadoc JavadocMethod Missing a Javadoc comment. 28

org/opendaylight/ovsdb/lib/impl/OvsdbClientImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 22
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 23
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 24
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 25
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 26
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 27
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 28
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 29
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.ovsdb.lib.error.ParsingException' import. 39
 Warning javadoc JavadocMethod Missing a Javadoc comment. 78
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 107
 Warning javadoc JavadocMethod Missing a Javadoc comment. 311

org/opendaylight/ovsdb/lib/impl/OvsdbConnectionService.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'io.netty.handler.logging.LoggingHandler' import. 34
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 39
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 40
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 41
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 42
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 43
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 44
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 45
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 46
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 47
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 48
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 49
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 50
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 51
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 52
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 53
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 54
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 55
 Warning javadoc JavadocMethod Missing a Javadoc comment. 111
 Warning javadoc JavadocMethod Missing a Javadoc comment. 444
 Warning javadoc JavadocMethod Missing a Javadoc comment. 490

org/opendaylight/ovsdb/lib/impl/StalePassiveConnectionService.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19

org/opendaylight/ovsdb/lib/jsonrpc/ExceptionHandler.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18

org/opendaylight/ovsdb/lib/jsonrpc/JsonRpc10Request.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12

org/opendaylight/ovsdb/lib/jsonrpc/JsonRpc10Response.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12

org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcDecoder.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 24
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 25
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 48

org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcEncoder.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13

org/opendaylight/ovsdb/lib/jsonrpc/JsonRpcEndpoint.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 25
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 26
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 27
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 28
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 29
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 30
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 31
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 32
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 33
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 34
 Warning javadoc JavadocMethod Missing a Javadoc comment. 59
 Warning javadoc JavadocMethod Missing a Javadoc comment. 88
 Warning javadoc JavadocMethod Missing a Javadoc comment. 147
 Warning javadoc JavadocMethod Missing a Javadoc comment. 175

org/opendaylight/ovsdb/lib/jsonrpc/JsonUtils.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning javadoc JavadocMethod Missing a Javadoc comment. 22

org/opendaylight/ovsdb/lib/message/MonitorRequest.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12

org/opendaylight/ovsdb/lib/message/MonitorRequestBuilder.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'org.opendaylight.ovsdb.lib.schema.ColumnSchema'should be separated from previous import group. 14
 Warning javadoc JavadocMethod Missing a Javadoc comment. 42
 Warning javadoc JavadocMethod Missing a Javadoc comment. 58

org/opendaylight/ovsdb/lib/message/MonitorSelect.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 18

org/opendaylight/ovsdb/lib/message/OvsdbRPC.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 16

org/opendaylight/ovsdb/lib/message/TableUpdate.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning javadoc JavadocMethod Missing a Javadoc comment. 29
 Warning javadoc JavadocMethod Missing a Javadoc comment. 72
 Warning javadoc JavadocMethod Missing a Javadoc comment. 80

org/opendaylight/ovsdb/lib/message/TableUpdates.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12

org/opendaylight/ovsdb/lib/message/TransactBuilder.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12

org/opendaylight/ovsdb/lib/message/TransactResponse.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'org.opendaylight.ovsdb.lib.operations.OperationResult'should be separated from previous import group. 12

org/opendaylight/ovsdb/lib/message/UpdateNotification.java

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

org/opendaylight/ovsdb/lib/notation/Column.java

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

org/opendaylight/ovsdb/lib/notation/Condition.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 21

org/opendaylight/ovsdb/lib/notation/Mutation.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 20

org/opendaylight/ovsdb/lib/notation/OvsdbMap.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15

org/opendaylight/ovsdb/lib/notation/OvsdbSet.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15

org/opendaylight/ovsdb/lib/notation/Row.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning javadoc JavadocMethod Missing a Javadoc comment. 36

org/opendaylight/ovsdb/lib/notation/UUID.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 20

org/opendaylight/ovsdb/lib/notation/Version.java

Severity Category Rule Message Line
 Warning javadoc JavadocMethod Missing a Javadoc comment. 28
 Warning javadoc JavadocMethod Missing a Javadoc comment. 37

org/opendaylight/ovsdb/lib/notation/json/ConditionSerializer.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14

org/opendaylight/ovsdb/lib/notation/json/MutationSerializer.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14

org/opendaylight/ovsdb/lib/notation/json/OvsdbMapSerializer.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15

org/opendaylight/ovsdb/lib/notation/json/OvsdbSetSerializer.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15

org/opendaylight/ovsdb/lib/notation/json/RowSerializer.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15

org/opendaylight/ovsdb/lib/notation/json/UUIDSerializer.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 17

org/opendaylight/ovsdb/lib/notation/json/UUIDStringConverter.java

Severity Category Rule Message Line
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 14

org/opendaylight/ovsdb/lib/operations/Delete.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12

org/opendaylight/ovsdb/lib/operations/Insert.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning javadoc JavadocMethod Missing a Javadoc comment. 38
 Warning javadoc JavadocMethod Missing a Javadoc comment. 49
 Warning javadoc JavadocMethod Missing a Javadoc comment. 61
 Warning javadoc JavadocMethod Missing a Javadoc comment. 67

org/opendaylight/ovsdb/lib/operations/Mutate.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 11
 Warning javadoc JavadocMethod Missing a Javadoc comment. 33

org/opendaylight/ovsdb/lib/operations/OperationResult.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14

org/opendaylight/ovsdb/lib/operations/Select.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12

org/opendaylight/ovsdb/lib/operations/TransactionBuilder.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13

org/opendaylight/ovsdb/lib/operations/Update.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning javadoc JavadocMethod Missing a Javadoc comment. 42
 Warning javadoc JavadocMethod Missing a Javadoc comment. 54
 Warning javadoc JavadocMethod Missing a Javadoc comment. 61

org/opendaylight/ovsdb/lib/schema/BaseType.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning javadoc JavadocMethod Missing a Javadoc comment. 29

org/opendaylight/ovsdb/lib/schema/ColumnSchema.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning javadoc JavadocMethod Missing a Javadoc comment. 30
 Warning javadoc JavadocMethod Missing a Javadoc comment. 142

org/opendaylight/ovsdb/lib/schema/DatabaseSchema.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning javadoc JavadocMethod Missing a Javadoc comment. 40
 Warning javadoc JavadocMethod Missing a Javadoc comment. 54
 Warning javadoc JavadocMethod Missing a Javadoc comment. 84
 Warning javadoc JavadocMethod Missing a Javadoc comment. 122

org/opendaylight/ovsdb/lib/schema/GenericTableSchema.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 12
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning javadoc JavadocMethod Missing a Javadoc comment. 34

org/opendaylight/ovsdb/lib/schema/TableSchema.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 17
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 18
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 19
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 20
 Warning javadoc JavadocMethod Missing a Javadoc comment. 64
 Warning javadoc JavadocMethod Missing a Javadoc comment. 78
 Warning javadoc JavadocMethod Missing a Javadoc comment. 86
 Warning javadoc JavadocMethod Missing a Javadoc comment. 94
 Warning javadoc JavadocMethod Missing a Javadoc comment. 121
 Warning javadoc JavadocMethod Missing a Javadoc comment. 139
 Warning javadoc JavadocMethod Missing a Javadoc comment. 158

org/opendaylight/ovsdb/lib/schema/typed/TypedColumn.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 8
 Warning imports CustomImportOrder 'org.opendaylight.ovsdb.lib.notation.Version'should be separated from previous import group. 14
 Warning javadoc JavadocMethod Missing a Javadoc comment. 20
 Warning javadoc JavadocMethod Missing a Javadoc comment. 22
 Warning javadoc JavadocMethod Missing a Javadoc comment. 24
 Warning javadoc JavadocMethod Missing a Javadoc comment. 26

org/opendaylight/ovsdb/lib/schema/typed/TypedTable.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'org.opendaylight.ovsdb.lib.notation.Version'should be separated from previous import group. 15
 Warning javadoc JavadocMethod Missing a Javadoc comment. 21
 Warning javadoc JavadocMethod Missing a Javadoc comment. 23
 Warning javadoc JavadocMethod Missing a Javadoc comment. 25
 Warning javadoc JavadocMethod Missing a Javadoc comment. 27

org/opendaylight/ovsdb/lib/schema/typed/TyperUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 13
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 14
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 15
 Warning imports CustomImportOrder Import statement is in the wrong order. Should be in the 'STANDARD_JAVA_PACKAGE' group. 16
 Warning javadoc JavadocMethod Missing a Javadoc comment. 127
 Warning javadoc JavadocMethod Missing a Javadoc comment. 135
 Warning javadoc JavadocMethod Missing a Javadoc comment. 143
 Warning javadoc JavadocMethod Missing a Javadoc comment. 151