Fork me on GitHub

Checkstyle Results

The following document contains the results of Checkstyle 7.2 with sun_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
42 0 0 2527

Files

File  I  W  E
org/apache/streams/facebook/Action.java 0 0 41
org/apache/streams/facebook/Application.java 0 0 40
org/apache/streams/facebook/Comment.java 0 0 56
org/apache/streams/facebook/Cover.java 0 0 47
org/apache/streams/facebook/Datum.java 0 0 40
org/apache/streams/facebook/Datum_.java 0 0 41
org/apache/streams/facebook/Engagement.java 0 0 38
org/apache/streams/facebook/FacebookConfiguration.java 0 0 113
org/apache/streams/facebook/FacebookOAuthConfiguration.java 0 0 60
org/apache/streams/facebook/FacebookPageProviderConfiguration.java 0 0 35
org/apache/streams/facebook/FacebookUserInformationConfiguration.java 0 0 49
org/apache/streams/facebook/FacebookUserstreamConfiguration.java 0 0 49
org/apache/streams/facebook/From.java 0 0 40
org/apache/streams/facebook/IdConfig.java 0 0 48
org/apache/streams/facebook/Like.java 0 0 40
org/apache/streams/facebook/Location.java 0 0 92
org/apache/streams/facebook/MessageTags.java 0 0 29
org/apache/streams/facebook/Page.java 0 0 396
org/apache/streams/facebook/Parking.java 0 0 47
org/apache/streams/facebook/Place.java 0 0 40
org/apache/streams/facebook/Post.java 0 0 266
org/apache/streams/facebook/Privacy.java 0 0 31
org/apache/streams/facebook/Property.java 0 0 40
org/apache/streams/facebook/To.java 0 0 29
org/apache/streams/facebook/VoipInfo.java 0 0 83
org/apache/streams/facebook/api/FacebookPageActivitySerializer.java 0 0 16
org/apache/streams/facebook/api/FacebookPostActivitySerializer.java 0 0 19
org/apache/streams/facebook/feed/FacebookPublicFeedXmlActivitySerializer.java 0 0 1
org/apache/streams/facebook/processor/FacebookTypeConverter.java 0 0 76
org/apache/streams/facebook/provider/FacebookDataCollector.java 0 0 28
org/apache/streams/facebook/provider/FacebookEventClassifier.java 0 0 12
org/apache/streams/facebook/provider/FacebookFriendFeedProvider.java 0 0 103
org/apache/streams/facebook/provider/FacebookFriendUpdatesProvider.java 0 0 98
org/apache/streams/facebook/provider/FacebookProvider.java 0 0 39
org/apache/streams/facebook/provider/FacebookUserInformationProvider.java 0 0 92
org/apache/streams/facebook/provider/FacebookUserstreamProvider.java 0 0 103
org/apache/streams/facebook/provider/page/FacebookPageDataCollector.java 0 0 22
org/apache/streams/facebook/provider/page/FacebookPageProvider.java 0 0 20
org/apache/streams/facebook/provider/pagefeed/FacebookPageFeedDataCollector.java 0 0 33
org/apache/streams/facebook/provider/pagefeed/FacebookPageFeedProvider.java 0 0 16
org/apache/streams/facebook/serializer/FacebookActivityUtil.java 0 0 44
org/apache/streams/facebook/serializer/FacebookStreamsPostSerializer.java 0 0 15

Rules

Category Rule Violations Severity
blocks EmptyBlock 1  Error
LeftCurly 8  Error
coding HiddenField 325  Error
MagicNumber 33  Error
SimplifyBooleanExpression 25  Error
design DesignForExtension 372  Error
HideUtilityClassConstructor 2  Error
VisibilityModifier 41  Error
javadoc JavadocMethod 270  Error
JavadocPackage 8  Error
JavadocStyle 38  Error
JavadocType 31  Error
JavadocVariable 202  Error
misc FinalParameters 506  Error
NewlineAtEndOfFile 4  Error
TodoComment 3  Error
modifier RedundantModifier 4  Error
naming ConstantName 4  Error
StaticVariableName 2  Error
TypeName 1  Error
regexp RegexpSingleline
  • format: "\s+$"
  • maximum: "0"
  • message: "Line has trailing spaces."
  • minimum: "0"
345  Error
sizes LineLength 238  Error
whitespace NoWhitespaceBefore 1  Error
ParenPad 46  Error
WhitespaceAfter 8  Error
WhitespaceAround 9  Error

Details

org/apache/streams/facebook/Action.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter name should be final. 48
 Error coding HiddenField 'name' hides a field. 48
 Error design DesignForExtension Class 'Action' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Action' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter name should be final. 52
 Error coding HiddenField 'name' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter link should be final. 73
 Error coding HiddenField 'link' hides a field. 73
 Error design DesignForExtension Class 'Action' looks like designed for extension (can be subclassed), but the method 'withLink' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Action' final or making the method 'withLink' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter link should be final. 77
 Error coding HiddenField 'link' hides a field. 77
 Error design DesignForExtension Class 'Action' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Action' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Action' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Action' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Action' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Action' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error coding HiddenField 'name' hides a field. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Action' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Action' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error coding HiddenField 'name' hides a field. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Action' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Action' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 105). 104
 Error design DesignForExtension Class 'Action' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Action' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 147). 116

org/apache/streams/facebook/Application.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter name should be final. 48
 Error coding HiddenField 'name' hides a field. 48
 Error design DesignForExtension Class 'Application' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Application' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter name should be final. 52
 Error coding HiddenField 'name' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter id should be final. 73
 Error coding HiddenField 'id' hides a field. 73
 Error design DesignForExtension Class 'Application' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Application' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter id should be final. 77
 Error coding HiddenField 'id' hides a field. 77
 Error design DesignForExtension Class 'Application' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Application' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Application' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Application' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Application' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Application' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error coding HiddenField 'name' hides a field. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Application' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Application' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error coding HiddenField 'name' hides a field. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Application' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Application' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 103). 104
 Error design DesignForExtension Class 'Application' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Application' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 143). 116

org/apache/streams/facebook/Comment.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 18
 Error javadoc JavadocVariable Missing a Javadoc comment. 28
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error javadoc JavadocVariable Missing a Javadoc comment. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error sizes LineLength Line is longer than 80 characters (found 85). 37
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error misc FinalParameters Parameter id should be final. 55
 Error coding HiddenField 'id' hides a field. 55
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 59
 Error javadoc JavadocMethod Missing a Javadoc comment. 59
 Error misc FinalParameters Parameter id should be final. 59
 Error coding HiddenField 'id' hides a field. 59
 Error regexp RegexpSingleline Line has trailing spaces. 65
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error misc FinalParameters Parameter from should be final. 80
 Error coding HiddenField 'from' hides a field. 80
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'withFrom' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'withFrom' static/final/abstract/empty, or adding allowed annotation for the method. 84
 Error javadoc JavadocMethod Missing a Javadoc comment. 84
 Error misc FinalParameters Parameter from should be final. 84
 Error coding HiddenField 'from' hides a field. 84
 Error regexp RegexpSingleline Line has trailing spaces. 90
 Error regexp RegexpSingleline Line has trailing spaces. 100
 Error misc FinalParameters Parameter message should be final. 105
 Error coding HiddenField 'message' hides a field. 105
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'withMessage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'withMessage' static/final/abstract/empty, or adding allowed annotation for the method. 109
 Error javadoc JavadocMethod Missing a Javadoc comment. 109
 Error misc FinalParameters Parameter message should be final. 109
 Error coding HiddenField 'message' hides a field. 109
 Error regexp RegexpSingleline Line has trailing spaces. 115
 Error regexp RegexpSingleline Line has trailing spaces. 125
 Error misc FinalParameters Parameter createdTime should be final. 130
 Error coding HiddenField 'createdTime' hides a field. 130
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'withCreatedTime' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'withCreatedTime' static/final/abstract/empty, or adding allowed annotation for the method. 134
 Error javadoc JavadocMethod Missing a Javadoc comment. 134
 Error misc FinalParameters Parameter createdTime should be final. 134
 Error coding HiddenField 'createdTime' hides a field. 134
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 139
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 144
 Error javadoc JavadocMethod Missing a Javadoc comment. 144
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 149
 Error javadoc JavadocMethod Missing a Javadoc comment. 149
 Error misc FinalParameters Parameter name should be final. 150
 Error misc FinalParameters Parameter value should be final. 150
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 154
 Error javadoc JavadocMethod Missing a Javadoc comment. 154
 Error misc FinalParameters Parameter name should be final. 154
 Error misc FinalParameters Parameter value should be final. 154
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 159
 Error sizes LineLength Line is longer than 80 characters (found 139). 161
 Error design DesignForExtension Class 'Comment' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Comment' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 164
 Error misc FinalParameters Parameter other should be final. 165
 Error coding SimplifyBooleanExpression Expression can be simplified. 169
 Error sizes LineLength Line is longer than 80 characters (found 209). 173

org/apache/streams/facebook/Cover.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error sizes LineLength Line is longer than 80 characters (found 85). 42
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error regexp RegexpSingleline Line has trailing spaces. 55
 Error misc FinalParameters Parameter id should be final. 60
 Error coding HiddenField 'id' hides a field. 60
 Error design DesignForExtension Class 'Cover' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Cover' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 64
 Error javadoc JavadocMethod Missing a Javadoc comment. 64
 Error misc FinalParameters Parameter id should be final. 64
 Error coding HiddenField 'id' hides a field. 64
 Error regexp RegexpSingleline Line has trailing spaces. 70
 Error regexp RegexpSingleline Line has trailing spaces. 80
 Error misc FinalParameters Parameter offsetY should be final. 85
 Error coding HiddenField 'offsetY' hides a field. 85
 Error design DesignForExtension Class 'Cover' looks like designed for extension (can be subclassed), but the method 'withOffsetY' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Cover' final or making the method 'withOffsetY' static/final/abstract/empty, or adding allowed annotation for the method. 89
 Error javadoc JavadocMethod Missing a Javadoc comment. 89
 Error misc FinalParameters Parameter offsetY should be final. 89
 Error coding HiddenField 'offsetY' hides a field. 89
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error regexp RegexpSingleline Line has trailing spaces. 105
 Error misc FinalParameters Parameter source should be final. 110
 Error coding HiddenField 'source' hides a field. 110
 Error design DesignForExtension Class 'Cover' looks like designed for extension (can be subclassed), but the method 'withSource' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Cover' final or making the method 'withSource' static/final/abstract/empty, or adding allowed annotation for the method. 114
 Error javadoc JavadocMethod Missing a Javadoc comment. 114
 Error misc FinalParameters Parameter source should be final. 114
 Error coding HiddenField 'source' hides a field. 114
 Error design DesignForExtension Class 'Cover' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Cover' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 119
 Error design DesignForExtension Class 'Cover' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Cover' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 124
 Error javadoc JavadocMethod Missing a Javadoc comment. 124
 Error design DesignForExtension Class 'Cover' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Cover' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 129
 Error javadoc JavadocMethod Missing a Javadoc comment. 129
 Error misc FinalParameters Parameter name should be final. 130
 Error misc FinalParameters Parameter value should be final. 130
 Error design DesignForExtension Class 'Cover' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Cover' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 134
 Error javadoc JavadocMethod Missing a Javadoc comment. 134
 Error misc FinalParameters Parameter name should be final. 134
 Error misc FinalParameters Parameter value should be final. 134
 Error design DesignForExtension Class 'Cover' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Cover' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 139
 Error sizes LineLength Line is longer than 80 characters (found 121). 141
 Error design DesignForExtension Class 'Cover' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Cover' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 144
 Error misc FinalParameters Parameter other should be final. 145
 Error coding SimplifyBooleanExpression Expression can be simplified. 149
 Error sizes LineLength Line is longer than 80 characters (found 176). 153

org/apache/streams/facebook/Datum.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter id should be final. 48
 Error coding HiddenField 'id' hides a field. 48
 Error design DesignForExtension Class 'Datum' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter id should be final. 52
 Error coding HiddenField 'id' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter name should be final. 73
 Error coding HiddenField 'name' hides a field. 73
 Error design DesignForExtension Class 'Datum' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter name should be final. 77
 Error coding HiddenField 'name' hides a field. 77
 Error design DesignForExtension Class 'Datum' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Datum' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Datum' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error coding HiddenField 'name' hides a field. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Datum' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error coding HiddenField 'name' hides a field. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Datum' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 103). 104
 Error design DesignForExtension Class 'Datum' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 143). 116

org/apache/streams/facebook/Datum_.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error naming TypeName Name 'Datum_' must match pattern '^[A-Z][a-zA-Z0-9]*$'. 23
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter id should be final. 48
 Error coding HiddenField 'id' hides a field. 48
 Error design DesignForExtension Class 'Datum_' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum_' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter id should be final. 52
 Error coding HiddenField 'id' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter name should be final. 73
 Error coding HiddenField 'name' hides a field. 73
 Error design DesignForExtension Class 'Datum_' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum_' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter name should be final. 77
 Error coding HiddenField 'name' hides a field. 77
 Error design DesignForExtension Class 'Datum_' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum_' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Datum_' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum_' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Datum_' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum_' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error coding HiddenField 'name' hides a field. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Datum_' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum_' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error coding HiddenField 'name' hides a field. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Datum_' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum_' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 103). 104
 Error design DesignForExtension Class 'Datum_' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Datum_' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 143). 116

org/apache/streams/facebook/Engagement.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error regexp RegexpSingleline Line has trailing spaces. 26
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 35
 Error sizes LineLength Line is longer than 80 characters (found 85). 36
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error regexp RegexpSingleline Line has trailing spaces. 49
 Error misc FinalParameters Parameter count should be final. 54
 Error coding HiddenField 'count' hides a field. 54
 Error design DesignForExtension Class 'Engagement' looks like designed for extension (can be subclassed), but the method 'withCount' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Engagement' final or making the method 'withCount' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error javadoc JavadocMethod Missing a Javadoc comment. 58
 Error misc FinalParameters Parameter count should be final. 58
 Error coding HiddenField 'count' hides a field. 58
 Error regexp RegexpSingleline Line has trailing spaces. 64
 Error regexp RegexpSingleline Line has trailing spaces. 74
 Error misc FinalParameters Parameter socialSentence should be final. 79
 Error coding HiddenField 'socialSentence' hides a field. 79
 Error design DesignForExtension Class 'Engagement' looks like designed for extension (can be subclassed), but the method 'withSocialSentence' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Engagement' final or making the method 'withSocialSentence' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error javadoc JavadocMethod Missing a Javadoc comment. 83
 Error misc FinalParameters Parameter socialSentence should be final. 83
 Error coding HiddenField 'socialSentence' hides a field. 83
 Error design DesignForExtension Class 'Engagement' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Engagement' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error design DesignForExtension Class 'Engagement' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Engagement' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 93
 Error javadoc JavadocMethod Missing a Javadoc comment. 93
 Error design DesignForExtension Class 'Engagement' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Engagement' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 98
 Error javadoc JavadocMethod Missing a Javadoc comment. 98
 Error misc FinalParameters Parameter name should be final. 99
 Error misc FinalParameters Parameter value should be final. 99
 Error design DesignForExtension Class 'Engagement' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Engagement' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 103
 Error javadoc JavadocMethod Missing a Javadoc comment. 103
 Error misc FinalParameters Parameter name should be final. 103
 Error misc FinalParameters Parameter value should be final. 103
 Error design DesignForExtension Class 'Engagement' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Engagement' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 108
 Error sizes LineLength Line is longer than 80 characters (found 116). 110
 Error design DesignForExtension Class 'Engagement' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Engagement' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 113
 Error misc FinalParameters Parameter other should be final. 114
 Error coding SimplifyBooleanExpression Expression can be simplified. 118
 Error sizes LineLength Line is longer than 80 characters (found 169). 122

org/apache/streams/facebook/FacebookConfiguration.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 22
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 35
 Error javadoc JavadocStyle First sentence should end with a period. 37
 Error regexp RegexpSingleline Line has trailing spaces. 39
 Error javadoc JavadocStyle First sentence should end with a period. 43
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error javadoc JavadocStyle First sentence should end with a period. 49
 Error regexp RegexpSingleline Line has trailing spaces. 51
 Error javadoc JavadocStyle First sentence should end with a period. 55
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error javadoc JavadocStyle First sentence should end with a period. 61
 Error regexp RegexpSingleline Line has trailing spaces. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 67
 Error javadoc JavadocStyle First sentence should end with a period. 70
 Error regexp RegexpSingleline Line has trailing spaces. 72
 Error regexp RegexpSingleline Line has trailing spaces. 80
 Error javadoc JavadocVariable Missing a Javadoc comment. 86
 Error sizes LineLength Line is longer than 80 characters (found 85). 87
 Error javadoc JavadocStyle First sentence should end with a period. 89
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error javadoc JavadocStyle First sentence should end with a period. 100
 Error regexp RegexpSingleline Line has trailing spaces. 102
 Error misc FinalParameters Parameter protocol should be final. 107
 Error coding HiddenField 'protocol' hides a field. 107
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'withProtocol' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'withProtocol' static/final/abstract/empty, or adding allowed annotation for the method. 111
 Error javadoc JavadocMethod Missing a Javadoc comment. 111
 Error misc FinalParameters Parameter protocol should be final. 111
 Error coding HiddenField 'protocol' hides a field. 111
 Error javadoc JavadocStyle First sentence should end with a period. 116
 Error regexp RegexpSingleline Line has trailing spaces. 118
 Error javadoc JavadocStyle First sentence should end with a period. 127
 Error regexp RegexpSingleline Line has trailing spaces. 129
 Error misc FinalParameters Parameter host should be final. 134
 Error coding HiddenField 'host' hides a field. 134
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'withHost' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'withHost' static/final/abstract/empty, or adding allowed annotation for the method. 138
 Error javadoc JavadocMethod Missing a Javadoc comment. 138
 Error misc FinalParameters Parameter host should be final. 138
 Error coding HiddenField 'host' hides a field. 138
 Error javadoc JavadocStyle First sentence should end with a period. 143
 Error regexp RegexpSingleline Line has trailing spaces. 145
 Error javadoc JavadocStyle First sentence should end with a period. 154
 Error regexp RegexpSingleline Line has trailing spaces. 156
 Error misc FinalParameters Parameter port should be final. 161
 Error coding HiddenField 'port' hides a field. 161
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'withPort' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'withPort' static/final/abstract/empty, or adding allowed annotation for the method. 165
 Error javadoc JavadocMethod Missing a Javadoc comment. 165
 Error misc FinalParameters Parameter port should be final. 165
 Error coding HiddenField 'port' hides a field. 165
 Error javadoc JavadocStyle First sentence should end with a period. 170
 Error regexp RegexpSingleline Line has trailing spaces. 172
 Error javadoc JavadocStyle First sentence should end with a period. 181
 Error regexp RegexpSingleline Line has trailing spaces. 183
 Error misc FinalParameters Parameter version should be final. 188
 Error coding HiddenField 'version' hides a field. 188
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'withVersion' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'withVersion' static/final/abstract/empty, or adding allowed annotation for the method. 192
 Error javadoc JavadocMethod Missing a Javadoc comment. 192
 Error misc FinalParameters Parameter version should be final. 192
 Error coding HiddenField 'version' hides a field. 192
 Error javadoc JavadocStyle First sentence should end with a period. 197
 Error regexp RegexpSingleline Line has trailing spaces. 199
 Error javadoc JavadocStyle First sentence should end with a period. 208
 Error regexp RegexpSingleline Line has trailing spaces. 210
 Error misc FinalParameters Parameter endpoint should be final. 215
 Error coding HiddenField 'endpoint' hides a field. 215
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'withEndpoint' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'withEndpoint' static/final/abstract/empty, or adding allowed annotation for the method. 219
 Error javadoc JavadocMethod Missing a Javadoc comment. 219
 Error misc FinalParameters Parameter endpoint should be final. 219
 Error coding HiddenField 'endpoint' hides a field. 219
 Error regexp RegexpSingleline Line has trailing spaces. 225
 Error regexp RegexpSingleline Line has trailing spaces. 235
 Error misc FinalParameters Parameter oauth should be final. 240
 Error coding HiddenField 'oauth' hides a field. 240
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'withOauth' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'withOauth' static/final/abstract/empty, or adding allowed annotation for the method. 244
 Error javadoc JavadocMethod Missing a Javadoc comment. 244
 Error misc FinalParameters Parameter oauth should be final. 244
 Error coding HiddenField 'oauth' hides a field. 244
 Error javadoc JavadocStyle First sentence should end with a period. 249
 Error regexp RegexpSingleline Line has trailing spaces. 251
 Error javadoc JavadocStyle First sentence should end with a period. 260
 Error regexp RegexpSingleline Line has trailing spaces. 262
 Error misc FinalParameters Parameter userAccessTokens should be final. 267
 Error coding HiddenField 'userAccessTokens' hides a field. 267
 Error sizes LineLength Line is longer than 80 characters (found 85). 271
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'withUserAccessTokens' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'withUserAccessTokens' static/final/abstract/empty, or adding allowed annotation for the method. 271
 Error javadoc JavadocMethod Missing a Javadoc comment. 271
 Error misc FinalParameters Parameter userAccessTokens should be final. 271
 Error coding HiddenField 'userAccessTokens' hides a field. 271
 Error regexp RegexpSingleline Line has trailing spaces. 278
 Error regexp RegexpSingleline Line has trailing spaces. 289
 Error misc FinalParameters Parameter ids should be final. 294
 Error coding HiddenField 'ids' hides a field. 294
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'withIds' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'withIds' static/final/abstract/empty, or adding allowed annotation for the method. 298
 Error javadoc JavadocMethod Missing a Javadoc comment. 298
 Error misc FinalParameters Parameter ids should be final. 298
 Error coding HiddenField 'ids' hides a field. 298
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 303
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 308
 Error javadoc JavadocMethod Missing a Javadoc comment. 308
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 313
 Error javadoc JavadocMethod Missing a Javadoc comment. 313
 Error misc FinalParameters Parameter name should be final. 314
 Error misc FinalParameters Parameter value should be final. 314
 Error sizes LineLength Line is longer than 80 characters (found 84). 318
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 318
 Error javadoc JavadocMethod Missing a Javadoc comment. 318
 Error misc FinalParameters Parameter name should be final. 318
 Error misc FinalParameters Parameter value should be final. 318
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 323
 Error sizes LineLength Line is longer than 80 characters (found 206). 325
 Error design DesignForExtension Class 'FacebookConfiguration' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookConfiguration' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 328
 Error misc FinalParameters Parameter other should be final. 329
 Error coding SimplifyBooleanExpression Expression can be simplified. 333
 Error sizes LineLength Line is longer than 80 characters (found 331). 337

org/apache/streams/facebook/FacebookOAuthConfiguration.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 18
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error javadoc JavadocVariable Missing a Javadoc comment. 31
 Error javadoc JavadocVariable Missing a Javadoc comment. 33
 Error javadoc JavadocVariable Missing a Javadoc comment. 35
 Error javadoc JavadocVariable Missing a Javadoc comment. 37
 Error sizes LineLength Line is longer than 80 characters (found 85). 38
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error regexp RegexpSingleline Line has trailing spaces. 51
 Error misc FinalParameters Parameter appId should be final. 56
 Error coding HiddenField 'appId' hides a field. 56
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'withAppId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'withAppId' static/final/abstract/empty, or adding allowed annotation for the method. 60
 Error javadoc JavadocMethod Missing a Javadoc comment. 60
 Error misc FinalParameters Parameter appId should be final. 60
 Error coding HiddenField 'appId' hides a field. 60
 Error regexp RegexpSingleline Line has trailing spaces. 66
 Error regexp RegexpSingleline Line has trailing spaces. 76
 Error misc FinalParameters Parameter appSecret should be final. 81
 Error coding HiddenField 'appSecret' hides a field. 81
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'withAppSecret' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'withAppSecret' static/final/abstract/empty, or adding allowed annotation for the method. 85
 Error javadoc JavadocMethod Missing a Javadoc comment. 85
 Error misc FinalParameters Parameter appSecret should be final. 85
 Error coding HiddenField 'appSecret' hides a field. 85
 Error regexp RegexpSingleline Line has trailing spaces. 91
 Error regexp RegexpSingleline Line has trailing spaces. 101
 Error misc FinalParameters Parameter appAccessToken should be final. 106
 Error coding HiddenField 'appAccessToken' hides a field. 106
 Error sizes LineLength Line is longer than 80 characters (found 81). 110
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'withAppAccessToken' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'withAppAccessToken' static/final/abstract/empty, or adding allowed annotation for the method. 110
 Error javadoc JavadocMethod Missing a Javadoc comment. 110
 Error misc FinalParameters Parameter appAccessToken should be final. 110
 Error coding HiddenField 'appAccessToken' hides a field. 110
 Error regexp RegexpSingleline Line has trailing spaces. 116
 Error regexp RegexpSingleline Line has trailing spaces. 126
 Error misc FinalParameters Parameter userAccessToken should be final. 131
 Error coding HiddenField 'userAccessToken' hides a field. 131
 Error sizes LineLength Line is longer than 80 characters (found 83). 135
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'withUserAccessToken' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'withUserAccessToken' static/final/abstract/empty, or adding allowed annotation for the method. 135
 Error javadoc JavadocMethod Missing a Javadoc comment. 135
 Error misc FinalParameters Parameter userAccessToken should be final. 135
 Error coding HiddenField 'userAccessToken' hides a field. 135
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 140
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 145
 Error javadoc JavadocMethod Missing a Javadoc comment. 145
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 150
 Error javadoc JavadocMethod Missing a Javadoc comment. 150
 Error misc FinalParameters Parameter name should be final. 151
 Error misc FinalParameters Parameter value should be final. 151
 Error sizes LineLength Line is longer than 80 characters (found 89). 155
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 155
 Error javadoc JavadocMethod Missing a Javadoc comment. 155
 Error misc FinalParameters Parameter name should be final. 155
 Error misc FinalParameters Parameter value should be final. 155
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 160
 Error sizes LineLength Line is longer than 80 characters (found 158). 162
 Error design DesignForExtension Class 'FacebookOAuthConfiguration' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookOAuthConfiguration' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 165
 Error misc FinalParameters Parameter other should be final. 166
 Error coding SimplifyBooleanExpression Expression can be simplified. 170
 Error sizes LineLength Line is longer than 80 characters (found 247). 174

org/apache/streams/facebook/FacebookPageProviderConfiguration.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 21
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 29
 Error javadoc JavadocStyle First sentence should end with a period. 31
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error sizes LineLength Line is longer than 80 characters (found 85). 39
 Error javadoc JavadocStyle First sentence should end with a period. 41
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error javadoc JavadocStyle First sentence should end with a period. 52
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error misc FinalParameters Parameter fields should be final. 59
 Error coding HiddenField 'fields' hides a field. 59
 Error design DesignForExtension Class 'FacebookPageProviderConfiguration' looks like designed for extension (can be subclassed), but the method 'withFields' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageProviderConfiguration' final or making the method 'withFields' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error javadoc JavadocMethod Missing a Javadoc comment. 63
 Error misc FinalParameters Parameter fields should be final. 63
 Error coding HiddenField 'fields' hides a field. 63
 Error design DesignForExtension Class 'FacebookPageProviderConfiguration' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageProviderConfiguration' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 68
 Error design DesignForExtension Class 'FacebookPageProviderConfiguration' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageProviderConfiguration' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 73
 Error javadoc JavadocMethod Missing a Javadoc comment. 73
 Error design DesignForExtension Class 'FacebookPageProviderConfiguration' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageProviderConfiguration' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 78
 Error javadoc JavadocMethod Missing a Javadoc comment. 78
 Error misc FinalParameters Parameter name should be final. 79
 Error misc FinalParameters Parameter value should be final. 79
 Error sizes LineLength Line is longer than 80 characters (found 96). 83
 Error design DesignForExtension Class 'FacebookPageProviderConfiguration' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageProviderConfiguration' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error javadoc JavadocMethod Missing a Javadoc comment. 83
 Error misc FinalParameters Parameter name should be final. 83
 Error misc FinalParameters Parameter value should be final. 83
 Error design DesignForExtension Class 'FacebookPageProviderConfiguration' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageProviderConfiguration' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error sizes LineLength Line is longer than 80 characters (found 94). 90
 Error design DesignForExtension Class 'FacebookPageProviderConfiguration' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageProviderConfiguration' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 93
 Error misc FinalParameters Parameter other should be final. 94
 Error coding SimplifyBooleanExpression Expression can be simplified. 98
 Error sizes LineLength Line is longer than 80 characters (found 92). 101
 Error sizes LineLength Line is longer than 80 characters (found 128). 102

org/apache/streams/facebook/FacebookUserInformationConfiguration.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 21
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 30
 Error javadoc JavadocStyle First sentence should end with a period. 32
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error javadoc JavadocStyle First sentence should end with a period. 39
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error coding MagicNumber '60000L' is a magic number. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error sizes LineLength Line is longer than 80 characters (found 85). 46
 Error javadoc JavadocStyle First sentence should end with a period. 48
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error javadoc JavadocStyle First sentence should end with a period. 59
 Error regexp RegexpSingleline Line has trailing spaces. 61
 Error misc FinalParameters Parameter info should be final. 66
 Error coding HiddenField 'info' hides a field. 66
 Error design DesignForExtension Class 'FacebookUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'withInfo' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationConfiguration' final or making the method 'withInfo' static/final/abstract/empty, or adding allowed annotation for the method. 70
 Error javadoc JavadocMethod Missing a Javadoc comment. 70
 Error misc FinalParameters Parameter info should be final. 70
 Error coding HiddenField 'info' hides a field. 70
 Error javadoc JavadocStyle First sentence should end with a period. 75
 Error regexp RegexpSingleline Line has trailing spaces. 77
 Error javadoc JavadocStyle First sentence should end with a period. 86
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error misc FinalParameters Parameter pollIntervalMillis should be final. 93
 Error coding HiddenField 'pollIntervalMillis' hides a field. 93
 Error sizes LineLength Line is longer than 80 characters (found 97). 97
 Error design DesignForExtension Class 'FacebookUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'withPollIntervalMillis' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationConfiguration' final or making the method 'withPollIntervalMillis' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter pollIntervalMillis should be final. 97
 Error coding HiddenField 'pollIntervalMillis' hides a field. 97
 Error design DesignForExtension Class 'FacebookUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationConfiguration' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error design DesignForExtension Class 'FacebookUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationConfiguration' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error javadoc JavadocMethod Missing a Javadoc comment. 107
 Error design DesignForExtension Class 'FacebookUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationConfiguration' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 112
 Error javadoc JavadocMethod Missing a Javadoc comment. 112
 Error misc FinalParameters Parameter name should be final. 113
 Error misc FinalParameters Parameter value should be final. 113
 Error sizes LineLength Line is longer than 80 characters (found 99). 117
 Error design DesignForExtension Class 'FacebookUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationConfiguration' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 117
 Error misc FinalParameters Parameter name should be final. 117
 Error misc FinalParameters Parameter value should be final. 117
 Error design DesignForExtension Class 'FacebookUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationConfiguration' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 122
 Error sizes LineLength Line is longer than 80 characters (found 119). 124
 Error design DesignForExtension Class 'FacebookUserInformationConfiguration' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationConfiguration' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 127
 Error misc FinalParameters Parameter other should be final. 128
 Error coding SimplifyBooleanExpression Expression can be simplified. 132
 Error sizes LineLength Line is longer than 80 characters (found 98). 135
 Error sizes LineLength Line is longer than 80 characters (found 175). 136

org/apache/streams/facebook/FacebookUserstreamConfiguration.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 21
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 30
 Error javadoc JavadocStyle First sentence should end with a period. 32
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error javadoc JavadocStyle First sentence should end with a period. 39
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error coding MagicNumber '60000L' is a magic number. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error sizes LineLength Line is longer than 80 characters (found 85). 46
 Error javadoc JavadocStyle First sentence should end with a period. 48
 Error regexp RegexpSingleline Line has trailing spaces. 50
 Error javadoc JavadocStyle First sentence should end with a period. 59
 Error regexp RegexpSingleline Line has trailing spaces. 61
 Error misc FinalParameters Parameter info should be final. 66
 Error coding HiddenField 'info' hides a field. 66
 Error design DesignForExtension Class 'FacebookUserstreamConfiguration' looks like designed for extension (can be subclassed), but the method 'withInfo' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamConfiguration' final or making the method 'withInfo' static/final/abstract/empty, or adding allowed annotation for the method. 70
 Error javadoc JavadocMethod Missing a Javadoc comment. 70
 Error misc FinalParameters Parameter info should be final. 70
 Error coding HiddenField 'info' hides a field. 70
 Error javadoc JavadocStyle First sentence should end with a period. 75
 Error regexp RegexpSingleline Line has trailing spaces. 77
 Error javadoc JavadocStyle First sentence should end with a period. 86
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error misc FinalParameters Parameter pollIntervalMillis should be final. 93
 Error coding HiddenField 'pollIntervalMillis' hides a field. 93
 Error sizes LineLength Line is longer than 80 characters (found 92). 97
 Error design DesignForExtension Class 'FacebookUserstreamConfiguration' looks like designed for extension (can be subclassed), but the method 'withPollIntervalMillis' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamConfiguration' final or making the method 'withPollIntervalMillis' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter pollIntervalMillis should be final. 97
 Error coding HiddenField 'pollIntervalMillis' hides a field. 97
 Error design DesignForExtension Class 'FacebookUserstreamConfiguration' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamConfiguration' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error design DesignForExtension Class 'FacebookUserstreamConfiguration' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamConfiguration' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error javadoc JavadocMethod Missing a Javadoc comment. 107
 Error design DesignForExtension Class 'FacebookUserstreamConfiguration' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamConfiguration' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 112
 Error javadoc JavadocMethod Missing a Javadoc comment. 112
 Error misc FinalParameters Parameter name should be final. 113
 Error misc FinalParameters Parameter value should be final. 113
 Error sizes LineLength Line is longer than 80 characters (found 94). 117
 Error design DesignForExtension Class 'FacebookUserstreamConfiguration' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamConfiguration' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 117
 Error misc FinalParameters Parameter name should be final. 117
 Error misc FinalParameters Parameter value should be final. 117
 Error design DesignForExtension Class 'FacebookUserstreamConfiguration' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamConfiguration' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 122
 Error sizes LineLength Line is longer than 80 characters (found 119). 124
 Error design DesignForExtension Class 'FacebookUserstreamConfiguration' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamConfiguration' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 127
 Error misc FinalParameters Parameter other should be final. 128
 Error coding SimplifyBooleanExpression Expression can be simplified. 132
 Error sizes LineLength Line is longer than 80 characters (found 88). 135
 Error sizes LineLength Line is longer than 80 characters (found 175). 136

org/apache/streams/facebook/From.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter id should be final. 48
 Error coding HiddenField 'id' hides a field. 48
 Error design DesignForExtension Class 'From' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'From' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter id should be final. 52
 Error coding HiddenField 'id' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter name should be final. 73
 Error coding HiddenField 'name' hides a field. 73
 Error design DesignForExtension Class 'From' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'From' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter name should be final. 77
 Error coding HiddenField 'name' hides a field. 77
 Error design DesignForExtension Class 'From' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'From' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'From' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'From' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'From' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'From' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error coding HiddenField 'name' hides a field. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'From' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'From' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error coding HiddenField 'name' hides a field. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'From' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'From' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 103). 104
 Error design DesignForExtension Class 'From' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'From' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 143). 116

org/apache/streams/facebook/IdConfig.java

Severity Category Rule Message Line
 Error regexp RegexpSingleline Line has trailing spaces. 22
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 34
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 40
 Error sizes LineLength Line is longer than 80 characters (found 85). 41
 Error regexp RegexpSingleline Line has trailing spaces. 44
 Error regexp RegexpSingleline Line has trailing spaces. 54
 Error misc FinalParameters Parameter id should be final. 59
 Error coding HiddenField 'id' hides a field. 59
 Error design DesignForExtension Class 'IdConfig' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdConfig' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error javadoc JavadocMethod Missing a Javadoc comment. 63
 Error misc FinalParameters Parameter id should be final. 63
 Error coding HiddenField 'id' hides a field. 63
 Error regexp RegexpSingleline Line has trailing spaces. 69
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error misc FinalParameters Parameter beforeDate should be final. 84
 Error coding HiddenField 'beforeDate' hides a field. 84
 Error design DesignForExtension Class 'IdConfig' looks like designed for extension (can be subclassed), but the method 'withBeforeDate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdConfig' final or making the method 'withBeforeDate' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error javadoc JavadocMethod Missing a Javadoc comment. 88
 Error misc FinalParameters Parameter beforeDate should be final. 88
 Error coding HiddenField 'beforeDate' hides a field. 88
 Error regexp RegexpSingleline Line has trailing spaces. 94
 Error regexp RegexpSingleline Line has trailing spaces. 104
 Error misc FinalParameters Parameter afterDate should be final. 109
 Error coding HiddenField 'afterDate' hides a field. 109
 Error design DesignForExtension Class 'IdConfig' looks like designed for extension (can be subclassed), but the method 'withAfterDate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdConfig' final or making the method 'withAfterDate' static/final/abstract/empty, or adding allowed annotation for the method. 113
 Error javadoc JavadocMethod Missing a Javadoc comment. 113
 Error misc FinalParameters Parameter afterDate should be final. 113
 Error coding HiddenField 'afterDate' hides a field. 113
 Error design DesignForExtension Class 'IdConfig' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdConfig' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 118
 Error design DesignForExtension Class 'IdConfig' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdConfig' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 123
 Error javadoc JavadocMethod Missing a Javadoc comment. 123
 Error design DesignForExtension Class 'IdConfig' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdConfig' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 128
 Error javadoc JavadocMethod Missing a Javadoc comment. 128
 Error misc FinalParameters Parameter name should be final. 129
 Error misc FinalParameters Parameter value should be final. 129
 Error design DesignForExtension Class 'IdConfig' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdConfig' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 133
 Error javadoc JavadocMethod Missing a Javadoc comment. 133
 Error misc FinalParameters Parameter name should be final. 133
 Error misc FinalParameters Parameter value should be final. 133
 Error design DesignForExtension Class 'IdConfig' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdConfig' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 138
 Error sizes LineLength Line is longer than 80 characters (found 127). 140
 Error design DesignForExtension Class 'IdConfig' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'IdConfig' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 143
 Error misc FinalParameters Parameter other should be final. 144
 Error coding SimplifyBooleanExpression Expression can be simplified. 148
 Error sizes LineLength Line is longer than 80 characters (found 188). 152

org/apache/streams/facebook/Like.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter name should be final. 48
 Error coding HiddenField 'name' hides a field. 48
 Error design DesignForExtension Class 'Like' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Like' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter name should be final. 52
 Error coding HiddenField 'name' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter link should be final. 73
 Error coding HiddenField 'link' hides a field. 73
 Error design DesignForExtension Class 'Like' looks like designed for extension (can be subclassed), but the method 'withLink' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Like' final or making the method 'withLink' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter link should be final. 77
 Error coding HiddenField 'link' hides a field. 77
 Error design DesignForExtension Class 'Like' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Like' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Like' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Like' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Like' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Like' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error coding HiddenField 'name' hides a field. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Like' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Like' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error coding HiddenField 'name' hides a field. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Like' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Like' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 105). 104
 Error design DesignForExtension Class 'Like' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Like' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 147). 116

org/apache/streams/facebook/Location.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error regexp RegexpSingleline Line has trailing spaces. 42
 Error regexp RegexpSingleline Line has trailing spaces. 47
 Error regexp RegexpSingleline Line has trailing spaces. 52
 Error regexp RegexpSingleline Line has trailing spaces. 57
 Error regexp RegexpSingleline Line has trailing spaces. 62
 Error regexp RegexpSingleline Line has trailing spaces. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 71
 Error sizes LineLength Line is longer than 80 characters (found 85). 72
 Error regexp RegexpSingleline Line has trailing spaces. 75
 Error regexp RegexpSingleline Line has trailing spaces. 85
 Error misc FinalParameters Parameter city should be final. 90
 Error coding HiddenField 'city' hides a field. 90
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withCity' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withCity' static/final/abstract/empty, or adding allowed annotation for the method. 94
 Error javadoc JavadocMethod Missing a Javadoc comment. 94
 Error misc FinalParameters Parameter city should be final. 94
 Error coding HiddenField 'city' hides a field. 94
 Error regexp RegexpSingleline Line has trailing spaces. 100
 Error regexp RegexpSingleline Line has trailing spaces. 110
 Error misc FinalParameters Parameter country should be final. 115
 Error coding HiddenField 'country' hides a field. 115
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withCountry' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withCountry' static/final/abstract/empty, or adding allowed annotation for the method. 119
 Error javadoc JavadocMethod Missing a Javadoc comment. 119
 Error misc FinalParameters Parameter country should be final. 119
 Error coding HiddenField 'country' hides a field. 119
 Error regexp RegexpSingleline Line has trailing spaces. 125
 Error regexp RegexpSingleline Line has trailing spaces. 135
 Error misc FinalParameters Parameter latitude should be final. 140
 Error coding HiddenField 'latitude' hides a field. 140
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withLatitude' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withLatitude' static/final/abstract/empty, or adding allowed annotation for the method. 144
 Error javadoc JavadocMethod Missing a Javadoc comment. 144
 Error misc FinalParameters Parameter latitude should be final. 144
 Error coding HiddenField 'latitude' hides a field. 144
 Error regexp RegexpSingleline Line has trailing spaces. 150
 Error regexp RegexpSingleline Line has trailing spaces. 160
 Error misc FinalParameters Parameter longitude should be final. 165
 Error coding HiddenField 'longitude' hides a field. 165
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withLongitude' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withLongitude' static/final/abstract/empty, or adding allowed annotation for the method. 169
 Error javadoc JavadocMethod Missing a Javadoc comment. 169
 Error misc FinalParameters Parameter longitude should be final. 169
 Error coding HiddenField 'longitude' hides a field. 169
 Error regexp RegexpSingleline Line has trailing spaces. 175
 Error regexp RegexpSingleline Line has trailing spaces. 185
 Error misc FinalParameters Parameter state should be final. 190
 Error coding HiddenField 'state' hides a field. 190
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withState' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withState' static/final/abstract/empty, or adding allowed annotation for the method. 194
 Error javadoc JavadocMethod Missing a Javadoc comment. 194
 Error misc FinalParameters Parameter state should be final. 194
 Error coding HiddenField 'state' hides a field. 194
 Error regexp RegexpSingleline Line has trailing spaces. 200
 Error regexp RegexpSingleline Line has trailing spaces. 210
 Error misc FinalParameters Parameter street should be final. 215
 Error coding HiddenField 'street' hides a field. 215
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withStreet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withStreet' static/final/abstract/empty, or adding allowed annotation for the method. 219
 Error javadoc JavadocMethod Missing a Javadoc comment. 219
 Error misc FinalParameters Parameter street should be final. 219
 Error coding HiddenField 'street' hides a field. 219
 Error regexp RegexpSingleline Line has trailing spaces. 225
 Error regexp RegexpSingleline Line has trailing spaces. 235
 Error misc FinalParameters Parameter text should be final. 240
 Error coding HiddenField 'text' hides a field. 240
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withText' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withText' static/final/abstract/empty, or adding allowed annotation for the method. 244
 Error javadoc JavadocMethod Missing a Javadoc comment. 244
 Error misc FinalParameters Parameter text should be final. 244
 Error coding HiddenField 'text' hides a field. 244
 Error regexp RegexpSingleline Line has trailing spaces. 250
 Error regexp RegexpSingleline Line has trailing spaces. 260
 Error misc FinalParameters Parameter zip should be final. 265
 Error coding HiddenField 'zip' hides a field. 265
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withZip' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withZip' static/final/abstract/empty, or adding allowed annotation for the method. 269
 Error javadoc JavadocMethod Missing a Javadoc comment. 269
 Error misc FinalParameters Parameter zip should be final. 269
 Error coding HiddenField 'zip' hides a field. 269
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 274
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 279
 Error javadoc JavadocMethod Missing a Javadoc comment. 279
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 284
 Error javadoc JavadocMethod Missing a Javadoc comment. 284
 Error misc FinalParameters Parameter name should be final. 285
 Error misc FinalParameters Parameter value should be final. 285
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 289
 Error javadoc JavadocMethod Missing a Javadoc comment. 289
 Error misc FinalParameters Parameter name should be final. 289
 Error misc FinalParameters Parameter value should be final. 289
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 294
 Error sizes LineLength Line is longer than 80 characters (found 197). 296
 Error design DesignForExtension Class 'Location' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Location' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 299
 Error misc FinalParameters Parameter other should be final. 300
 Error coding SimplifyBooleanExpression Expression can be simplified. 304
 Error sizes LineLength Line is longer than 80 characters (found 313). 308

org/apache/streams/facebook/MessageTags.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error sizes LineLength Line is longer than 80 characters (found 85). 31
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error regexp RegexpSingleline Line has trailing spaces. 44
 Error misc FinalParameters Parameter data should be final. 49
 Error coding HiddenField 'data' hides a field. 49
 Error design DesignForExtension Class 'MessageTags' looks like designed for extension (can be subclassed), but the method 'withData' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MessageTags' final or making the method 'withData' static/final/abstract/empty, or adding allowed annotation for the method. 53
 Error javadoc JavadocMethod Missing a Javadoc comment. 53
 Error misc FinalParameters Parameter data should be final. 53
 Error coding HiddenField 'data' hides a field. 53
 Error design DesignForExtension Class 'MessageTags' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MessageTags' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error design DesignForExtension Class 'MessageTags' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MessageTags' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error javadoc JavadocMethod Missing a Javadoc comment. 63
 Error design DesignForExtension Class 'MessageTags' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MessageTags' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 68
 Error javadoc JavadocMethod Missing a Javadoc comment. 68
 Error misc FinalParameters Parameter name should be final. 69
 Error misc FinalParameters Parameter value should be final. 69
 Error design DesignForExtension Class 'MessageTags' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MessageTags' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 73
 Error javadoc JavadocMethod Missing a Javadoc comment. 73
 Error misc FinalParameters Parameter name should be final. 73
 Error misc FinalParameters Parameter value should be final. 73
 Error design DesignForExtension Class 'MessageTags' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MessageTags' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 78
 Error sizes LineLength Line is longer than 80 characters (found 92). 80
 Error design DesignForExtension Class 'MessageTags' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'MessageTags' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error misc FinalParameters Parameter other should be final. 84
 Error coding SimplifyBooleanExpression Expression can be simplified. 88
 Error sizes LineLength Line is longer than 80 characters (found 124). 92

org/apache/streams/facebook/Page.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 19
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 65
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error regexp RegexpSingleline Line has trailing spaces. 73
 Error regexp RegexpSingleline Line has trailing spaces. 78
 Error regexp RegexpSingleline Line has trailing spaces. 83
 Error regexp RegexpSingleline Line has trailing spaces. 88
 Error regexp RegexpSingleline Line has trailing spaces. 93
 Error regexp RegexpSingleline Line has trailing spaces. 98
 Error regexp RegexpSingleline Line has trailing spaces. 103
 Error regexp RegexpSingleline Line has trailing spaces. 108
 Error regexp RegexpSingleline Line has trailing spaces. 113
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error regexp RegexpSingleline Line has trailing spaces. 124
 Error regexp RegexpSingleline Line has trailing spaces. 129
 Error regexp RegexpSingleline Line has trailing spaces. 135
 Error regexp RegexpSingleline Line has trailing spaces. 140
 Error regexp RegexpSingleline Line has trailing spaces. 145
 Error regexp RegexpSingleline Line has trailing spaces. 150
 Error regexp RegexpSingleline Line has trailing spaces. 155
 Error regexp RegexpSingleline Line has trailing spaces. 160
 Error regexp RegexpSingleline Line has trailing spaces. 165
 Error regexp RegexpSingleline Line has trailing spaces. 170
 Error regexp RegexpSingleline Line has trailing spaces. 175
 Error regexp RegexpSingleline Line has trailing spaces. 180
 Error regexp RegexpSingleline Line has trailing spaces. 185
 Error regexp RegexpSingleline Line has trailing spaces. 190
 Error regexp RegexpSingleline Line has trailing spaces. 195
 Error regexp RegexpSingleline Line has trailing spaces. 200
 Error regexp RegexpSingleline Line has trailing spaces. 206
 Error regexp RegexpSingleline Line has trailing spaces. 211
 Error regexp RegexpSingleline Line has trailing spaces. 217
 Error regexp RegexpSingleline Line has trailing spaces. 222
 Error regexp RegexpSingleline Line has trailing spaces. 227
 Error regexp RegexpSingleline Line has trailing spaces. 232
 Error regexp RegexpSingleline Line has trailing spaces. 237
 Error regexp RegexpSingleline Line has trailing spaces. 242
 Error regexp RegexpSingleline Line has trailing spaces. 247
 Error regexp RegexpSingleline Line has trailing spaces. 252
 Error regexp RegexpSingleline Line has trailing spaces. 257
 Error regexp RegexpSingleline Line has trailing spaces. 263
 Error regexp RegexpSingleline Line has trailing spaces. 268
 Error regexp RegexpSingleline Line has trailing spaces. 273
 Error javadoc JavadocVariable Missing a Javadoc comment. 277
 Error sizes LineLength Line is longer than 80 characters (found 85). 278
 Error regexp RegexpSingleline Line has trailing spaces. 281
 Error regexp RegexpSingleline Line has trailing spaces. 291
 Error misc FinalParameters Parameter about should be final. 296
 Error coding HiddenField 'about' hides a field. 296
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withAbout' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withAbout' static/final/abstract/empty, or adding allowed annotation for the method. 300
 Error javadoc JavadocMethod Missing a Javadoc comment. 300
 Error misc FinalParameters Parameter about should be final. 300
 Error coding HiddenField 'about' hides a field. 300
 Error regexp RegexpSingleline Line has trailing spaces. 306
 Error regexp RegexpSingleline Line has trailing spaces. 316
 Error misc FinalParameters Parameter username should be final. 321
 Error coding HiddenField 'username' hides a field. 321
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withUsername' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withUsername' static/final/abstract/empty, or adding allowed annotation for the method. 325
 Error javadoc JavadocMethod Missing a Javadoc comment. 325
 Error misc FinalParameters Parameter username should be final. 325
 Error coding HiddenField 'username' hides a field. 325
 Error regexp RegexpSingleline Line has trailing spaces. 331
 Error regexp RegexpSingleline Line has trailing spaces. 341
 Error misc FinalParameters Parameter accessToken should be final. 346
 Error coding HiddenField 'accessToken' hides a field. 346
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withAccessToken' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withAccessToken' static/final/abstract/empty, or adding allowed annotation for the method. 350
 Error javadoc JavadocMethod Missing a Javadoc comment. 350
 Error misc FinalParameters Parameter accessToken should be final. 350
 Error coding HiddenField 'accessToken' hides a field. 350
 Error regexp RegexpSingleline Line has trailing spaces. 356
 Error regexp RegexpSingleline Line has trailing spaces. 366
 Error misc FinalParameters Parameter birthday should be final. 371
 Error coding HiddenField 'birthday' hides a field. 371
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withBirthday' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withBirthday' static/final/abstract/empty, or adding allowed annotation for the method. 375
 Error javadoc JavadocMethod Missing a Javadoc comment. 375
 Error misc FinalParameters Parameter birthday should be final. 375
 Error coding HiddenField 'birthday' hides a field. 375
 Error regexp RegexpSingleline Line has trailing spaces. 381
 Error regexp RegexpSingleline Line has trailing spaces. 391
 Error misc FinalParameters Parameter category should be final. 396
 Error coding HiddenField 'category' hides a field. 396
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withCategory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withCategory' static/final/abstract/empty, or adding allowed annotation for the method. 400
 Error javadoc JavadocMethod Missing a Javadoc comment. 400
 Error misc FinalParameters Parameter category should be final. 400
 Error coding HiddenField 'category' hides a field. 400
 Error regexp RegexpSingleline Line has trailing spaces. 406
 Error regexp RegexpSingleline Line has trailing spaces. 416
 Error misc FinalParameters Parameter canCheckin should be final. 421
 Error coding HiddenField 'canCheckin' hides a field. 421
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withCanCheckin' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withCanCheckin' static/final/abstract/empty, or adding allowed annotation for the method. 425
 Error javadoc JavadocMethod Missing a Javadoc comment. 425
 Error misc FinalParameters Parameter canCheckin should be final. 425
 Error coding HiddenField 'canCheckin' hides a field. 425
 Error regexp RegexpSingleline Line has trailing spaces. 431
 Error regexp RegexpSingleline Line has trailing spaces. 441
 Error misc FinalParameters Parameter canPost should be final. 446
 Error coding HiddenField 'canPost' hides a field. 446
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withCanPost' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withCanPost' static/final/abstract/empty, or adding allowed annotation for the method. 450
 Error javadoc JavadocMethod Missing a Javadoc comment. 450
 Error misc FinalParameters Parameter canPost should be final. 450
 Error coding HiddenField 'canPost' hides a field. 450
 Error regexp RegexpSingleline Line has trailing spaces. 456
 Error regexp RegexpSingleline Line has trailing spaces. 466
 Error misc FinalParameters Parameter checkins should be final. 471
 Error coding HiddenField 'checkins' hides a field. 471
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withCheckins' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withCheckins' static/final/abstract/empty, or adding allowed annotation for the method. 475
 Error javadoc JavadocMethod Missing a Javadoc comment. 475
 Error misc FinalParameters Parameter checkins should be final. 475
 Error coding HiddenField 'checkins' hides a field. 475
 Error regexp RegexpSingleline Line has trailing spaces. 481
 Error regexp RegexpSingleline Line has trailing spaces. 491
 Error misc FinalParameters Parameter communityPage should be final. 496
 Error coding HiddenField 'communityPage' hides a field. 496
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withCommunityPage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withCommunityPage' static/final/abstract/empty, or adding allowed annotation for the method. 500
 Error javadoc JavadocMethod Missing a Javadoc comment. 500
 Error misc FinalParameters Parameter communityPage should be final. 500
 Error coding HiddenField 'communityPage' hides a field. 500
 Error regexp RegexpSingleline Line has trailing spaces. 506
 Error regexp RegexpSingleline Line has trailing spaces. 516
 Error misc FinalParameters Parameter cover should be final. 521
 Error coding HiddenField 'cover' hides a field. 521
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withCover' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withCover' static/final/abstract/empty, or adding allowed annotation for the method. 525
 Error javadoc JavadocMethod Missing a Javadoc comment. 525
 Error misc FinalParameters Parameter cover should be final. 525
 Error coding HiddenField 'cover' hides a field. 525
 Error regexp RegexpSingleline Line has trailing spaces. 531
 Error regexp RegexpSingleline Line has trailing spaces. 541
 Error misc FinalParameters Parameter displaySubtext should be final. 546
 Error coding HiddenField 'displaySubtext' hides a field. 546
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withDisplaySubtext' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withDisplaySubtext' static/final/abstract/empty, or adding allowed annotation for the method. 550
 Error javadoc JavadocMethod Missing a Javadoc comment. 550
 Error misc FinalParameters Parameter displaySubtext should be final. 550
 Error coding HiddenField 'displaySubtext' hides a field. 550
 Error regexp RegexpSingleline Line has trailing spaces. 556
 Error regexp RegexpSingleline Line has trailing spaces. 566
 Error sizes LineLength Line is longer than 80 characters (found 86). 571
 Error misc FinalParameters Parameter displayedMessageResponseTime should be final. 571
 Error coding HiddenField 'displayedMessageResponseTime' hides a field. 571
 Error sizes LineLength Line is longer than 80 characters (found 87). 575
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withDisplayedMessageResponseTime' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withDisplayedMessageResponseTime' static/final/abstract/empty, or adding allowed annotation for the method. 575
 Error javadoc JavadocMethod Missing a Javadoc comment. 575
 Error misc FinalParameters Parameter displayedMessageResponseTime should be final. 575
 Error coding HiddenField 'displayedMessageResponseTime' hides a field. 575
 Error regexp RegexpSingleline Line has trailing spaces. 581
 Error regexp RegexpSingleline Line has trailing spaces. 591
 Error misc FinalParameters Parameter engagement should be final. 596
 Error coding HiddenField 'engagement' hides a field. 596
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withEngagement' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withEngagement' static/final/abstract/empty, or adding allowed annotation for the method. 600
 Error javadoc JavadocMethod Missing a Javadoc comment. 600
 Error misc FinalParameters Parameter engagement should be final. 600
 Error coding HiddenField 'engagement' hides a field. 600
 Error regexp RegexpSingleline Line has trailing spaces. 606
 Error regexp RegexpSingleline Line has trailing spaces. 616
 Error misc FinalParameters Parameter fanCount should be final. 621
 Error coding HiddenField 'fanCount' hides a field. 621
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withFanCount' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withFanCount' static/final/abstract/empty, or adding allowed annotation for the method. 625
 Error javadoc JavadocMethod Missing a Javadoc comment. 625
 Error misc FinalParameters Parameter fanCount should be final. 625
 Error coding HiddenField 'fanCount' hides a field. 625
 Error regexp RegexpSingleline Line has trailing spaces. 631
 Error regexp RegexpSingleline Line has trailing spaces. 641
 Error misc FinalParameters Parameter founded should be final. 646
 Error coding HiddenField 'founded' hides a field. 646
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withFounded' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withFounded' static/final/abstract/empty, or adding allowed annotation for the method. 650
 Error javadoc JavadocMethod Missing a Javadoc comment. 650
 Error misc FinalParameters Parameter founded should be final. 650
 Error coding HiddenField 'founded' hides a field. 650
 Error regexp RegexpSingleline Line has trailing spaces. 656
 Error regexp RegexpSingleline Line has trailing spaces. 666
 Error misc FinalParameters Parameter generalInfo should be final. 671
 Error coding HiddenField 'generalInfo' hides a field. 671
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withGeneralInfo' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withGeneralInfo' static/final/abstract/empty, or adding allowed annotation for the method. 675
 Error javadoc JavadocMethod Missing a Javadoc comment. 675
 Error misc FinalParameters Parameter generalInfo should be final. 675
 Error coding HiddenField 'generalInfo' hides a field. 675
 Error regexp RegexpSingleline Line has trailing spaces. 681
 Error regexp RegexpSingleline Line has trailing spaces. 691
 Error misc FinalParameters Parameter globalBrandRootId should be final. 696
 Error coding HiddenField 'globalBrandRootId' hides a field. 696
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withGlobalBrandRootId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withGlobalBrandRootId' static/final/abstract/empty, or adding allowed annotation for the method. 700
 Error javadoc JavadocMethod Missing a Javadoc comment. 700
 Error misc FinalParameters Parameter globalBrandRootId should be final. 700
 Error coding HiddenField 'globalBrandRootId' hides a field. 700
 Error regexp RegexpSingleline Line has trailing spaces. 706
 Error regexp RegexpSingleline Line has trailing spaces. 716
 Error misc FinalParameters Parameter id should be final. 721
 Error coding HiddenField 'id' hides a field. 721
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 725
 Error javadoc JavadocMethod Missing a Javadoc comment. 725
 Error misc FinalParameters Parameter id should be final. 725
 Error coding HiddenField 'id' hides a field. 725
 Error regexp RegexpSingleline Line has trailing spaces. 731
 Error regexp RegexpSingleline Line has trailing spaces. 741
 Error misc FinalParameters Parameter isCommunityPage should be final. 746
 Error coding HiddenField 'isCommunityPage' hides a field. 746
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withIsCommunityPage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withIsCommunityPage' static/final/abstract/empty, or adding allowed annotation for the method. 750
 Error javadoc JavadocMethod Missing a Javadoc comment. 750
 Error misc FinalParameters Parameter isCommunityPage should be final. 750
 Error coding HiddenField 'isCommunityPage' hides a field. 750
 Error regexp RegexpSingleline Line has trailing spaces. 756
 Error regexp RegexpSingleline Line has trailing spaces. 766
 Error misc FinalParameters Parameter isAlwaysOpen should be final. 771
 Error coding HiddenField 'isAlwaysOpen' hides a field. 771
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withIsAlwaysOpen' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withIsAlwaysOpen' static/final/abstract/empty, or adding allowed annotation for the method. 775
 Error javadoc JavadocMethod Missing a Javadoc comment. 775
 Error misc FinalParameters Parameter isAlwaysOpen should be final. 775
 Error coding HiddenField 'isAlwaysOpen' hides a field. 775
 Error regexp RegexpSingleline Line has trailing spaces. 781
 Error regexp RegexpSingleline Line has trailing spaces. 791
 Error misc FinalParameters Parameter isPermanentlyClosed should be final. 796
 Error coding HiddenField 'isPermanentlyClosed' hides a field. 796
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withIsPermanentlyClosed' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withIsPermanentlyClosed' static/final/abstract/empty, or adding allowed annotation for the method. 800
 Error javadoc JavadocMethod Missing a Javadoc comment. 800
 Error misc FinalParameters Parameter isPermanentlyClosed should be final. 800
 Error coding HiddenField 'isPermanentlyClosed' hides a field. 800
 Error regexp RegexpSingleline Line has trailing spaces. 806
 Error regexp RegexpSingleline Line has trailing spaces. 816
 Error misc FinalParameters Parameter isPublished should be final. 821
 Error coding HiddenField 'isPublished' hides a field. 821
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withIsPublished' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withIsPublished' static/final/abstract/empty, or adding allowed annotation for the method. 825
 Error javadoc JavadocMethod Missing a Javadoc comment. 825
 Error misc FinalParameters Parameter isPublished should be final. 825
 Error coding HiddenField 'isPublished' hides a field. 825
 Error regexp RegexpSingleline Line has trailing spaces. 831
 Error regexp RegexpSingleline Line has trailing spaces. 841
 Error misc FinalParameters Parameter isUnclaimed should be final. 846
 Error coding HiddenField 'isUnclaimed' hides a field. 846
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withIsUnclaimed' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withIsUnclaimed' static/final/abstract/empty, or adding allowed annotation for the method. 850
 Error javadoc JavadocMethod Missing a Javadoc comment. 850
 Error misc FinalParameters Parameter isUnclaimed should be final. 850
 Error coding HiddenField 'isUnclaimed' hides a field. 850
 Error regexp RegexpSingleline Line has trailing spaces. 856
 Error regexp RegexpSingleline Line has trailing spaces. 866
 Error misc FinalParameters Parameter isWebhooksSubscribed should be final. 871
 Error coding HiddenField 'isWebhooksSubscribed' hides a field. 871
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withIsWebhooksSubscribed' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withIsWebhooksSubscribed' static/final/abstract/empty, or adding allowed annotation for the method. 875
 Error javadoc JavadocMethod Missing a Javadoc comment. 875
 Error misc FinalParameters Parameter isWebhooksSubscribed should be final. 875
 Error coding HiddenField 'isWebhooksSubscribed' hides a field. 875
 Error regexp RegexpSingleline Line has trailing spaces. 881
 Error regexp RegexpSingleline Line has trailing spaces. 891
 Error misc FinalParameters Parameter leadgenTosAccepted should be final. 896
 Error coding HiddenField 'leadgenTosAccepted' hides a field. 896
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withLeadgenTosAccepted' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withLeadgenTosAccepted' static/final/abstract/empty, or adding allowed annotation for the method. 900
 Error javadoc JavadocMethod Missing a Javadoc comment. 900
 Error misc FinalParameters Parameter leadgenTosAccepted should be final. 900
 Error coding HiddenField 'leadgenTosAccepted' hides a field. 900
 Error regexp RegexpSingleline Line has trailing spaces. 906
 Error regexp RegexpSingleline Line has trailing spaces. 916
 Error misc FinalParameters Parameter link should be final. 921
 Error coding HiddenField 'link' hides a field. 921
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withLink' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withLink' static/final/abstract/empty, or adding allowed annotation for the method. 925
 Error javadoc JavadocMethod Missing a Javadoc comment. 925
 Error misc FinalParameters Parameter link should be final. 925
 Error coding HiddenField 'link' hides a field. 925
 Error regexp RegexpSingleline Line has trailing spaces. 931
 Error regexp RegexpSingleline Line has trailing spaces. 941
 Error misc FinalParameters Parameter location should be final. 946
 Error coding HiddenField 'location' hides a field. 946
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withLocation' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withLocation' static/final/abstract/empty, or adding allowed annotation for the method. 950
 Error javadoc JavadocMethod Missing a Javadoc comment. 950
 Error misc FinalParameters Parameter location should be final. 950
 Error coding HiddenField 'location' hides a field. 950
 Error regexp RegexpSingleline Line has trailing spaces. 956
 Error regexp RegexpSingleline Line has trailing spaces. 966
 Error misc FinalParameters Parameter mission should be final. 971
 Error coding HiddenField 'mission' hides a field. 971
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withMission' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withMission' static/final/abstract/empty, or adding allowed annotation for the method. 975
 Error javadoc JavadocMethod Missing a Javadoc comment. 975
 Error misc FinalParameters Parameter mission should be final. 975
 Error coding HiddenField 'mission' hides a field. 975
 Error regexp RegexpSingleline Line has trailing spaces. 981
 Error regexp RegexpSingleline Line has trailing spaces. 991
 Error misc FinalParameters Parameter parking should be final. 996
 Error coding HiddenField 'parking' hides a field. 996
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withParking' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withParking' static/final/abstract/empty, or adding allowed annotation for the method. 1000
 Error javadoc JavadocMethod Missing a Javadoc comment. 1000
 Error misc FinalParameters Parameter parking should be final. 1000
 Error coding HiddenField 'parking' hides a field. 1000
 Error regexp RegexpSingleline Line has trailing spaces. 1006
 Error regexp RegexpSingleline Line has trailing spaces. 1016
 Error misc FinalParameters Parameter name should be final. 1021
 Error coding HiddenField 'name' hides a field. 1021
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 1025
 Error javadoc JavadocMethod Missing a Javadoc comment. 1025
 Error misc FinalParameters Parameter name should be final. 1025
 Error coding HiddenField 'name' hides a field. 1025
 Error regexp RegexpSingleline Line has trailing spaces. 1031
 Error regexp RegexpSingleline Line has trailing spaces. 1041
 Error sizes LineLength Line is longer than 80 characters (found 82). 1046
 Error misc FinalParameters Parameter nameWithLocationDescriptor should be final. 1046
 Error coding HiddenField 'nameWithLocationDescriptor' hides a field. 1046
 Error sizes LineLength Line is longer than 80 characters (found 83). 1050
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withNameWithLocationDescriptor' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withNameWithLocationDescriptor' static/final/abstract/empty, or adding allowed annotation for the method. 1050
 Error javadoc JavadocMethod Missing a Javadoc comment. 1050
 Error misc FinalParameters Parameter nameWithLocationDescriptor should be final. 1050
 Error coding HiddenField 'nameWithLocationDescriptor' hides a field. 1050
 Error regexp RegexpSingleline Line has trailing spaces. 1056
 Error regexp RegexpSingleline Line has trailing spaces. 1066
 Error misc FinalParameters Parameter overallStarRating should be final. 1071
 Error coding HiddenField 'overallStarRating' hides a field. 1071
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withOverallStarRating' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withOverallStarRating' static/final/abstract/empty, or adding allowed annotation for the method. 1075
 Error javadoc JavadocMethod Missing a Javadoc comment. 1075
 Error misc FinalParameters Parameter overallStarRating should be final. 1075
 Error coding HiddenField 'overallStarRating' hides a field. 1075
 Error regexp RegexpSingleline Line has trailing spaces. 1081
 Error regexp RegexpSingleline Line has trailing spaces. 1091
 Error misc FinalParameters Parameter phone should be final. 1096
 Error coding HiddenField 'phone' hides a field. 1096
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withPhone' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withPhone' static/final/abstract/empty, or adding allowed annotation for the method. 1100
 Error javadoc JavadocMethod Missing a Javadoc comment. 1100
 Error misc FinalParameters Parameter phone should be final. 1100
 Error coding HiddenField 'phone' hides a field. 1100
 Error regexp RegexpSingleline Line has trailing spaces. 1106
 Error regexp RegexpSingleline Line has trailing spaces. 1116
 Error misc FinalParameters Parameter picture should be final. 1121
 Error coding HiddenField 'picture' hides a field. 1121
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withPicture' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withPicture' static/final/abstract/empty, or adding allowed annotation for the method. 1125
 Error javadoc JavadocMethod Missing a Javadoc comment. 1125
 Error misc FinalParameters Parameter picture should be final. 1125
 Error coding HiddenField 'picture' hides a field. 1125
 Error regexp RegexpSingleline Line has trailing spaces. 1131
 Error regexp RegexpSingleline Line has trailing spaces. 1141
 Error misc FinalParameters Parameter published should be final. 1146
 Error coding HiddenField 'published' hides a field. 1146
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withPublished' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withPublished' static/final/abstract/empty, or adding allowed annotation for the method. 1150
 Error javadoc JavadocMethod Missing a Javadoc comment. 1150
 Error misc FinalParameters Parameter published should be final. 1150
 Error coding HiddenField 'published' hides a field. 1150
 Error regexp RegexpSingleline Line has trailing spaces. 1156
 Error regexp RegexpSingleline Line has trailing spaces. 1166
 Error misc FinalParameters Parameter ratingCount should be final. 1171
 Error coding HiddenField 'ratingCount' hides a field. 1171
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withRatingCount' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withRatingCount' static/final/abstract/empty, or adding allowed annotation for the method. 1175
 Error javadoc JavadocMethod Missing a Javadoc comment. 1175
 Error misc FinalParameters Parameter ratingCount should be final. 1175
 Error coding HiddenField 'ratingCount' hides a field. 1175
 Error regexp RegexpSingleline Line has trailing spaces. 1181
 Error regexp RegexpSingleline Line has trailing spaces. 1191
 Error misc FinalParameters Parameter talkingAboutCount should be final. 1196
 Error coding HiddenField 'talkingAboutCount' hides a field. 1196
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withTalkingAboutCount' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withTalkingAboutCount' static/final/abstract/empty, or adding allowed annotation for the method. 1200
 Error javadoc JavadocMethod Missing a Javadoc comment. 1200
 Error misc FinalParameters Parameter talkingAboutCount should be final. 1200
 Error coding HiddenField 'talkingAboutCount' hides a field. 1200
 Error regexp RegexpSingleline Line has trailing spaces. 1206
 Error regexp RegexpSingleline Line has trailing spaces. 1216
 Error misc FinalParameters Parameter voipInfo should be final. 1221
 Error coding HiddenField 'voipInfo' hides a field. 1221
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withVoipInfo' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withVoipInfo' static/final/abstract/empty, or adding allowed annotation for the method. 1225
 Error javadoc JavadocMethod Missing a Javadoc comment. 1225
 Error misc FinalParameters Parameter voipInfo should be final. 1225
 Error coding HiddenField 'voipInfo' hides a field. 1225
 Error regexp RegexpSingleline Line has trailing spaces. 1231
 Error regexp RegexpSingleline Line has trailing spaces. 1241
 Error misc FinalParameters Parameter verificationStatus should be final. 1246
 Error coding HiddenField 'verificationStatus' hides a field. 1246
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withVerificationStatus' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withVerificationStatus' static/final/abstract/empty, or adding allowed annotation for the method. 1250
 Error javadoc JavadocMethod Missing a Javadoc comment. 1250
 Error misc FinalParameters Parameter verificationStatus should be final. 1250
 Error coding HiddenField 'verificationStatus' hides a field. 1250
 Error regexp RegexpSingleline Line has trailing spaces. 1256
 Error regexp RegexpSingleline Line has trailing spaces. 1266
 Error misc FinalParameters Parameter website should be final. 1271
 Error coding HiddenField 'website' hides a field. 1271
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withWebsite' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withWebsite' static/final/abstract/empty, or adding allowed annotation for the method. 1275
 Error javadoc JavadocMethod Missing a Javadoc comment. 1275
 Error misc FinalParameters Parameter website should be final. 1275
 Error coding HiddenField 'website' hides a field. 1275
 Error regexp RegexpSingleline Line has trailing spaces. 1281
 Error regexp RegexpSingleline Line has trailing spaces. 1291
 Error misc FinalParameters Parameter wereHereCount should be final. 1296
 Error coding HiddenField 'wereHereCount' hides a field. 1296
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withWereHereCount' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withWereHereCount' static/final/abstract/empty, or adding allowed annotation for the method. 1300
 Error javadoc JavadocMethod Missing a Javadoc comment. 1300
 Error misc FinalParameters Parameter wereHereCount should be final. 1300
 Error coding HiddenField 'wereHereCount' hides a field. 1300
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 1305
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 1310
 Error javadoc JavadocMethod Missing a Javadoc comment. 1310
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 1315
 Error javadoc JavadocMethod Missing a Javadoc comment. 1315
 Error misc FinalParameters Parameter name should be final. 1316
 Error coding HiddenField 'name' hides a field. 1316
 Error misc FinalParameters Parameter value should be final. 1316
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 1320
 Error javadoc JavadocMethod Missing a Javadoc comment. 1320
 Error misc FinalParameters Parameter name should be final. 1320
 Error coding HiddenField 'name' hides a field. 1320
 Error misc FinalParameters Parameter value should be final. 1320
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 1325
 Error sizes LineLength Line is longer than 80 characters (found 902). 1327
 Error design DesignForExtension Class 'Page' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Page' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 1330
 Error misc FinalParameters Parameter other should be final. 1331
 Error coding SimplifyBooleanExpression Expression can be simplified. 1335
 Error sizes LineLength Line is longer than 80 characters (found 1,624). 1339

org/apache/streams/facebook/Parking.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error regexp RegexpSingleline Line has trailing spaces. 27
 Error regexp RegexpSingleline Line has trailing spaces. 32
 Error regexp RegexpSingleline Line has trailing spaces. 37
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error sizes LineLength Line is longer than 80 characters (found 85). 42
 Error regexp RegexpSingleline Line has trailing spaces. 45
 Error regexp RegexpSingleline Line has trailing spaces. 55
 Error misc FinalParameters Parameter lot should be final. 60
 Error coding HiddenField 'lot' hides a field. 60
 Error design DesignForExtension Class 'Parking' looks like designed for extension (can be subclassed), but the method 'withLot' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parking' final or making the method 'withLot' static/final/abstract/empty, or adding allowed annotation for the method. 64
 Error javadoc JavadocMethod Missing a Javadoc comment. 64
 Error misc FinalParameters Parameter lot should be final. 64
 Error coding HiddenField 'lot' hides a field. 64
 Error regexp RegexpSingleline Line has trailing spaces. 70
 Error regexp RegexpSingleline Line has trailing spaces. 80
 Error misc FinalParameters Parameter street should be final. 85
 Error coding HiddenField 'street' hides a field. 85
 Error design DesignForExtension Class 'Parking' looks like designed for extension (can be subclassed), but the method 'withStreet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parking' final or making the method 'withStreet' static/final/abstract/empty, or adding allowed annotation for the method. 89
 Error javadoc JavadocMethod Missing a Javadoc comment. 89
 Error misc FinalParameters Parameter street should be final. 89
 Error coding HiddenField 'street' hides a field. 89
 Error regexp RegexpSingleline Line has trailing spaces. 95
 Error regexp RegexpSingleline Line has trailing spaces. 105
 Error misc FinalParameters Parameter valet should be final. 110
 Error coding HiddenField 'valet' hides a field. 110
 Error design DesignForExtension Class 'Parking' looks like designed for extension (can be subclassed), but the method 'withValet' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parking' final or making the method 'withValet' static/final/abstract/empty, or adding allowed annotation for the method. 114
 Error javadoc JavadocMethod Missing a Javadoc comment. 114
 Error misc FinalParameters Parameter valet should be final. 114
 Error coding HiddenField 'valet' hides a field. 114
 Error design DesignForExtension Class 'Parking' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parking' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 119
 Error design DesignForExtension Class 'Parking' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parking' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 124
 Error javadoc JavadocMethod Missing a Javadoc comment. 124
 Error design DesignForExtension Class 'Parking' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parking' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 129
 Error javadoc JavadocMethod Missing a Javadoc comment. 129
 Error misc FinalParameters Parameter name should be final. 130
 Error misc FinalParameters Parameter value should be final. 130
 Error design DesignForExtension Class 'Parking' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parking' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 134
 Error javadoc JavadocMethod Missing a Javadoc comment. 134
 Error misc FinalParameters Parameter name should be final. 134
 Error misc FinalParameters Parameter value should be final. 134
 Error design DesignForExtension Class 'Parking' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parking' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 139
 Error sizes LineLength Line is longer than 80 characters (found 120). 141
 Error design DesignForExtension Class 'Parking' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Parking' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 144
 Error misc FinalParameters Parameter other should be final. 145
 Error coding SimplifyBooleanExpression Expression can be simplified. 149
 Error sizes LineLength Line is longer than 80 characters (found 174). 153

org/apache/streams/facebook/Place.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter name should be final. 48
 Error coding HiddenField 'name' hides a field. 48
 Error design DesignForExtension Class 'Place' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Place' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter name should be final. 52
 Error coding HiddenField 'name' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter id should be final. 73
 Error coding HiddenField 'id' hides a field. 73
 Error design DesignForExtension Class 'Place' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Place' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter id should be final. 77
 Error coding HiddenField 'id' hides a field. 77
 Error design DesignForExtension Class 'Place' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Place' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Place' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Place' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Place' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Place' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error coding HiddenField 'name' hides a field. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Place' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Place' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error coding HiddenField 'name' hides a field. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Place' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Place' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 103). 104
 Error design DesignForExtension Class 'Place' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Place' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 143). 116

org/apache/streams/facebook/Post.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 22
 Error blocks LeftCurly '{' at column 1 should be on the previous line. 54
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 71
 Error javadoc JavadocVariable Missing a Javadoc comment. 73
 Error javadoc JavadocVariable Missing a Javadoc comment. 75
 Error javadoc JavadocVariable Missing a Javadoc comment. 77
 Error javadoc JavadocVariable Missing a Javadoc comment. 79
 Error javadoc JavadocVariable Missing a Javadoc comment. 81
 Error javadoc JavadocVariable Missing a Javadoc comment. 83
 Error javadoc JavadocVariable Missing a Javadoc comment. 86
 Error javadoc JavadocVariable Missing a Javadoc comment. 89
 Error javadoc JavadocVariable Missing a Javadoc comment. 92
 Error javadoc JavadocVariable Missing a Javadoc comment. 94
 Error javadoc JavadocVariable Missing a Javadoc comment. 97
 Error javadoc JavadocVariable Missing a Javadoc comment. 99
 Error javadoc JavadocVariable Missing a Javadoc comment. 101
 Error javadoc JavadocVariable Missing a Javadoc comment. 103
 Error javadoc JavadocVariable Missing a Javadoc comment. 106
 Error javadoc JavadocVariable Missing a Javadoc comment. 108
 Error javadoc JavadocVariable Missing a Javadoc comment. 110
 Error javadoc JavadocVariable Missing a Javadoc comment. 112
 Error javadoc JavadocVariable Missing a Javadoc comment. 114
 Error javadoc JavadocVariable Missing a Javadoc comment. 117
 Error javadoc JavadocVariable Missing a Javadoc comment. 120
 Error sizes LineLength Line is longer than 80 characters (found 85). 121
 Error regexp RegexpSingleline Line has trailing spaces. 124
 Error regexp RegexpSingleline Line has trailing spaces. 134
 Error misc FinalParameters Parameter id should be final. 139
 Error coding HiddenField 'id' hides a field. 139
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withId' static/final/abstract/empty, or adding allowed annotation for the method. 143
 Error javadoc JavadocMethod Missing a Javadoc comment. 143
 Error misc FinalParameters Parameter id should be final. 143
 Error coding HiddenField 'id' hides a field. 143
 Error regexp RegexpSingleline Line has trailing spaces. 149
 Error regexp RegexpSingleline Line has trailing spaces. 159
 Error misc FinalParameters Parameter from should be final. 164
 Error coding HiddenField 'from' hides a field. 164
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withFrom' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withFrom' static/final/abstract/empty, or adding allowed annotation for the method. 168
 Error javadoc JavadocMethod Missing a Javadoc comment. 168
 Error misc FinalParameters Parameter from should be final. 168
 Error coding HiddenField 'from' hides a field. 168
 Error regexp RegexpSingleline Line has trailing spaces. 174
 Error regexp RegexpSingleline Line has trailing spaces. 184
 Error misc FinalParameters Parameter to should be final. 189
 Error coding HiddenField 'to' hides a field. 189
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withTo' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withTo' static/final/abstract/empty, or adding allowed annotation for the method. 193
 Error javadoc JavadocMethod Missing a Javadoc comment. 193
 Error misc FinalParameters Parameter to should be final. 193
 Error coding HiddenField 'to' hides a field. 193
 Error regexp RegexpSingleline Line has trailing spaces. 199
 Error regexp RegexpSingleline Line has trailing spaces. 209
 Error misc FinalParameters Parameter message should be final. 214
 Error coding HiddenField 'message' hides a field. 214
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withMessage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withMessage' static/final/abstract/empty, or adding allowed annotation for the method. 218
 Error javadoc JavadocMethod Missing a Javadoc comment. 218
 Error misc FinalParameters Parameter message should be final. 218
 Error coding HiddenField 'message' hides a field. 218
 Error regexp RegexpSingleline Line has trailing spaces. 224
 Error regexp RegexpSingleline Line has trailing spaces. 234
 Error misc FinalParameters Parameter messageTags should be final. 239
 Error coding HiddenField 'messageTags' hides a field. 239
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withMessageTags' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withMessageTags' static/final/abstract/empty, or adding allowed annotation for the method. 243
 Error javadoc JavadocMethod Missing a Javadoc comment. 243
 Error misc FinalParameters Parameter messageTags should be final. 243
 Error coding HiddenField 'messageTags' hides a field. 243
 Error regexp RegexpSingleline Line has trailing spaces. 249
 Error regexp RegexpSingleline Line has trailing spaces. 259
 Error misc FinalParameters Parameter picture should be final. 264
 Error coding HiddenField 'picture' hides a field. 264
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withPicture' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withPicture' static/final/abstract/empty, or adding allowed annotation for the method. 268
 Error javadoc JavadocMethod Missing a Javadoc comment. 268
 Error misc FinalParameters Parameter picture should be final. 268
 Error coding HiddenField 'picture' hides a field. 268
 Error regexp RegexpSingleline Line has trailing spaces. 274
 Error regexp RegexpSingleline Line has trailing spaces. 284
 Error misc FinalParameters Parameter link should be final. 289
 Error coding HiddenField 'link' hides a field. 289
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withLink' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withLink' static/final/abstract/empty, or adding allowed annotation for the method. 293
 Error javadoc JavadocMethod Missing a Javadoc comment. 293
 Error misc FinalParameters Parameter link should be final. 293
 Error coding HiddenField 'link' hides a field. 293
 Error regexp RegexpSingleline Line has trailing spaces. 299
 Error regexp RegexpSingleline Line has trailing spaces. 309
 Error misc FinalParameters Parameter name should be final. 314
 Error coding HiddenField 'name' hides a field. 314
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 318
 Error javadoc JavadocMethod Missing a Javadoc comment. 318
 Error misc FinalParameters Parameter name should be final. 318
 Error coding HiddenField 'name' hides a field. 318
 Error regexp RegexpSingleline Line has trailing spaces. 324
 Error regexp RegexpSingleline Line has trailing spaces. 334
 Error misc FinalParameters Parameter caption should be final. 339
 Error coding HiddenField 'caption' hides a field. 339
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withCaption' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withCaption' static/final/abstract/empty, or adding allowed annotation for the method. 343
 Error javadoc JavadocMethod Missing a Javadoc comment. 343
 Error misc FinalParameters Parameter caption should be final. 343
 Error coding HiddenField 'caption' hides a field. 343
 Error regexp RegexpSingleline Line has trailing spaces. 349
 Error regexp RegexpSingleline Line has trailing spaces. 359
 Error misc FinalParameters Parameter description should be final. 364
 Error coding HiddenField 'description' hides a field. 364
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withDescription' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withDescription' static/final/abstract/empty, or adding allowed annotation for the method. 368
 Error javadoc JavadocMethod Missing a Javadoc comment. 368
 Error misc FinalParameters Parameter description should be final. 368
 Error coding HiddenField 'description' hides a field. 368
 Error regexp RegexpSingleline Line has trailing spaces. 374
 Error regexp RegexpSingleline Line has trailing spaces. 384
 Error misc FinalParameters Parameter source should be final. 389
 Error coding HiddenField 'source' hides a field. 389
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withSource' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withSource' static/final/abstract/empty, or adding allowed annotation for the method. 393
 Error javadoc JavadocMethod Missing a Javadoc comment. 393
 Error misc FinalParameters Parameter source should be final. 393
 Error coding HiddenField 'source' hides a field. 393
 Error regexp RegexpSingleline Line has trailing spaces. 399
 Error regexp RegexpSingleline Line has trailing spaces. 409
 Error misc FinalParameters Parameter icon should be final. 414
 Error coding HiddenField 'icon' hides a field. 414
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withIcon' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withIcon' static/final/abstract/empty, or adding allowed annotation for the method. 418
 Error javadoc JavadocMethod Missing a Javadoc comment. 418
 Error misc FinalParameters Parameter icon should be final. 418
 Error coding HiddenField 'icon' hides a field. 418
 Error regexp RegexpSingleline Line has trailing spaces. 424
 Error regexp RegexpSingleline Line has trailing spaces. 434
 Error misc FinalParameters Parameter actions should be final. 439
 Error coding HiddenField 'actions' hides a field. 439
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withActions' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withActions' static/final/abstract/empty, or adding allowed annotation for the method. 443
 Error javadoc JavadocMethod Missing a Javadoc comment. 443
 Error misc FinalParameters Parameter actions should be final. 443
 Error coding HiddenField 'actions' hides a field. 443
 Error regexp RegexpSingleline Line has trailing spaces. 449
 Error regexp RegexpSingleline Line has trailing spaces. 459
 Error misc FinalParameters Parameter comments should be final. 464
 Error coding HiddenField 'comments' hides a field. 464
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withComments' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withComments' static/final/abstract/empty, or adding allowed annotation for the method. 468
 Error javadoc JavadocMethod Missing a Javadoc comment. 468
 Error misc FinalParameters Parameter comments should be final. 468
 Error coding HiddenField 'comments' hides a field. 468
 Error regexp RegexpSingleline Line has trailing spaces. 474
 Error regexp RegexpSingleline Line has trailing spaces. 484
 Error misc FinalParameters Parameter likes should be final. 489
 Error coding HiddenField 'likes' hides a field. 489
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withLikes' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withLikes' static/final/abstract/empty, or adding allowed annotation for the method. 493
 Error javadoc JavadocMethod Missing a Javadoc comment. 493
 Error misc FinalParameters Parameter likes should be final. 493
 Error coding HiddenField 'likes' hides a field. 493
 Error regexp RegexpSingleline Line has trailing spaces. 499
 Error regexp RegexpSingleline Line has trailing spaces. 509
 Error misc FinalParameters Parameter type should be final. 514
 Error coding HiddenField 'type' hides a field. 514
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withType' static/final/abstract/empty, or adding allowed annotation for the method. 518
 Error javadoc JavadocMethod Missing a Javadoc comment. 518
 Error misc FinalParameters Parameter type should be final. 518
 Error coding HiddenField 'type' hides a field. 518
 Error regexp RegexpSingleline Line has trailing spaces. 524
 Error regexp RegexpSingleline Line has trailing spaces. 534
 Error misc FinalParameters Parameter place should be final. 539
 Error coding HiddenField 'place' hides a field. 539
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withPlace' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withPlace' static/final/abstract/empty, or adding allowed annotation for the method. 543
 Error javadoc JavadocMethod Missing a Javadoc comment. 543
 Error misc FinalParameters Parameter place should be final. 543
 Error coding HiddenField 'place' hides a field. 543
 Error regexp RegexpSingleline Line has trailing spaces. 549
 Error regexp RegexpSingleline Line has trailing spaces. 559
 Error misc FinalParameters Parameter story should be final. 564
 Error coding HiddenField 'story' hides a field. 564
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withStory' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withStory' static/final/abstract/empty, or adding allowed annotation for the method. 568
 Error javadoc JavadocMethod Missing a Javadoc comment. 568
 Error misc FinalParameters Parameter story should be final. 568
 Error coding HiddenField 'story' hides a field. 568
 Error regexp RegexpSingleline Line has trailing spaces. 574
 Error regexp RegexpSingleline Line has trailing spaces. 584
 Error misc FinalParameters Parameter shares should be final. 589
 Error coding HiddenField 'shares' hides a field. 589
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withShares' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withShares' static/final/abstract/empty, or adding allowed annotation for the method. 593
 Error javadoc JavadocMethod Missing a Javadoc comment. 593
 Error misc FinalParameters Parameter shares should be final. 593
 Error coding HiddenField 'shares' hides a field. 593
 Error regexp RegexpSingleline Line has trailing spaces. 599
 Error regexp RegexpSingleline Line has trailing spaces. 609
 Error misc FinalParameters Parameter objectId should be final. 614
 Error coding HiddenField 'objectId' hides a field. 614
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withObjectId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withObjectId' static/final/abstract/empty, or adding allowed annotation for the method. 618
 Error javadoc JavadocMethod Missing a Javadoc comment. 618
 Error misc FinalParameters Parameter objectId should be final. 618
 Error coding HiddenField 'objectId' hides a field. 618
 Error regexp RegexpSingleline Line has trailing spaces. 624
 Error regexp RegexpSingleline Line has trailing spaces. 634
 Error misc FinalParameters Parameter application should be final. 639
 Error coding HiddenField 'application' hides a field. 639
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withApplication' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withApplication' static/final/abstract/empty, or adding allowed annotation for the method. 643
 Error javadoc JavadocMethod Missing a Javadoc comment. 643
 Error misc FinalParameters Parameter application should be final. 643
 Error coding HiddenField 'application' hides a field. 643
 Error regexp RegexpSingleline Line has trailing spaces. 649
 Error regexp RegexpSingleline Line has trailing spaces. 659
 Error misc FinalParameters Parameter createdTime should be final. 664
 Error coding HiddenField 'createdTime' hides a field. 664
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withCreatedTime' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withCreatedTime' static/final/abstract/empty, or adding allowed annotation for the method. 668
 Error javadoc JavadocMethod Missing a Javadoc comment. 668
 Error misc FinalParameters Parameter createdTime should be final. 668
 Error coding HiddenField 'createdTime' hides a field. 668
 Error regexp RegexpSingleline Line has trailing spaces. 674
 Error regexp RegexpSingleline Line has trailing spaces. 684
 Error misc FinalParameters Parameter updatedTime should be final. 689
 Error coding HiddenField 'updatedTime' hides a field. 689
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withUpdatedTime' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withUpdatedTime' static/final/abstract/empty, or adding allowed annotation for the method. 693
 Error javadoc JavadocMethod Missing a Javadoc comment. 693
 Error misc FinalParameters Parameter updatedTime should be final. 693
 Error coding HiddenField 'updatedTime' hides a field. 693
 Error regexp RegexpSingleline Line has trailing spaces. 699
 Error regexp RegexpSingleline Line has trailing spaces. 709
 Error misc FinalParameters Parameter includeHidden should be final. 714
 Error coding HiddenField 'includeHidden' hides a field. 714
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withIncludeHidden' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withIncludeHidden' static/final/abstract/empty, or adding allowed annotation for the method. 718
 Error javadoc JavadocMethod Missing a Javadoc comment. 718
 Error misc FinalParameters Parameter includeHidden should be final. 718
 Error coding HiddenField 'includeHidden' hides a field. 718
 Error regexp RegexpSingleline Line has trailing spaces. 724
 Error regexp RegexpSingleline Line has trailing spaces. 734
 Error misc FinalParameters Parameter statusType should be final. 739
 Error coding HiddenField 'statusType' hides a field. 739
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withStatusType' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withStatusType' static/final/abstract/empty, or adding allowed annotation for the method. 743
 Error javadoc JavadocMethod Missing a Javadoc comment. 743
 Error misc FinalParameters Parameter statusType should be final. 743
 Error coding HiddenField 'statusType' hides a field. 743
 Error regexp RegexpSingleline Line has trailing spaces. 749
 Error regexp RegexpSingleline Line has trailing spaces. 759
 Error misc FinalParameters Parameter properties should be final. 764
 Error coding HiddenField 'properties' hides a field. 764
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withProperties' static/final/abstract/empty, or adding allowed annotation for the method. 768
 Error javadoc JavadocMethod Missing a Javadoc comment. 768
 Error misc FinalParameters Parameter properties should be final. 768
 Error coding HiddenField 'properties' hides a field. 768
 Error regexp RegexpSingleline Line has trailing spaces. 774
 Error regexp RegexpSingleline Line has trailing spaces. 784
 Error misc FinalParameters Parameter privacy should be final. 789
 Error coding HiddenField 'privacy' hides a field. 789
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withPrivacy' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withPrivacy' static/final/abstract/empty, or adding allowed annotation for the method. 793
 Error javadoc JavadocMethod Missing a Javadoc comment. 793
 Error misc FinalParameters Parameter privacy should be final. 793
 Error coding HiddenField 'privacy' hides a field. 793
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 798
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 803
 Error javadoc JavadocMethod Missing a Javadoc comment. 803
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 808
 Error javadoc JavadocMethod Missing a Javadoc comment. 808
 Error misc FinalParameters Parameter name should be final. 809
 Error coding HiddenField 'name' hides a field. 809
 Error misc FinalParameters Parameter value should be final. 809
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 813
 Error javadoc JavadocMethod Missing a Javadoc comment. 813
 Error misc FinalParameters Parameter name should be final. 813
 Error coding HiddenField 'name' hides a field. 813
 Error misc FinalParameters Parameter value should be final. 813
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 818
 Error sizes LineLength Line is longer than 80 characters (found 512). 820
 Error design DesignForExtension Class 'Post' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Post' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 823
 Error misc FinalParameters Parameter other should be final. 824
 Error coding SimplifyBooleanExpression Expression can be simplified. 828
 Error sizes LineLength Line is longer than 80 characters (found 886). 832

org/apache/streams/facebook/Privacy.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 24
 Error javadoc JavadocVariable Missing a Javadoc comment. 26
 Error sizes LineLength Line is longer than 80 characters (found 85). 27
 Error regexp RegexpSingleline Line has trailing spaces. 30
 Error regexp RegexpSingleline Line has trailing spaces. 40
 Error misc FinalParameters Parameter value should be final. 45
 Error coding HiddenField 'value' hides a field. 45
 Error design DesignForExtension Class 'Privacy' looks like designed for extension (can be subclassed), but the method 'withValue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Privacy' final or making the method 'withValue' static/final/abstract/empty, or adding allowed annotation for the method. 49
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error misc FinalParameters Parameter value should be final. 49
 Error coding HiddenField 'value' hides a field. 49
 Error design DesignForExtension Class 'Privacy' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Privacy' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 54
 Error design DesignForExtension Class 'Privacy' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Privacy' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 59
 Error javadoc JavadocMethod Missing a Javadoc comment. 59
 Error design DesignForExtension Class 'Privacy' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Privacy' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 64
 Error javadoc JavadocMethod Missing a Javadoc comment. 64
 Error misc FinalParameters Parameter name should be final. 65
 Error misc FinalParameters Parameter value should be final. 65
 Error coding HiddenField 'value' hides a field. 65
 Error design DesignForExtension Class 'Privacy' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Privacy' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 69
 Error javadoc JavadocMethod Missing a Javadoc comment. 69
 Error misc FinalParameters Parameter name should be final. 69
 Error misc FinalParameters Parameter value should be final. 69
 Error coding HiddenField 'value' hides a field. 69
 Error design DesignForExtension Class 'Privacy' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Privacy' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 74
 Error sizes LineLength Line is longer than 80 characters (found 93). 76
 Error design DesignForExtension Class 'Privacy' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Privacy' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 79
 Error misc FinalParameters Parameter other should be final. 80
 Error coding SimplifyBooleanExpression Expression can be simplified. 84
 Error sizes LineLength Line is longer than 80 characters (found 126). 88

org/apache/streams/facebook/Property.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error javadoc JavadocVariable Missing a Javadoc comment. 25
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 29
 Error sizes LineLength Line is longer than 80 characters (found 85). 30
 Error regexp RegexpSingleline Line has trailing spaces. 33
 Error regexp RegexpSingleline Line has trailing spaces. 43
 Error misc FinalParameters Parameter name should be final. 48
 Error coding HiddenField 'name' hides a field. 48
 Error design DesignForExtension Class 'Property' looks like designed for extension (can be subclassed), but the method 'withName' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Property' final or making the method 'withName' static/final/abstract/empty, or adding allowed annotation for the method. 52
 Error javadoc JavadocMethod Missing a Javadoc comment. 52
 Error misc FinalParameters Parameter name should be final. 52
 Error coding HiddenField 'name' hides a field. 52
 Error regexp RegexpSingleline Line has trailing spaces. 58
 Error regexp RegexpSingleline Line has trailing spaces. 68
 Error misc FinalParameters Parameter text should be final. 73
 Error coding HiddenField 'text' hides a field. 73
 Error design DesignForExtension Class 'Property' looks like designed for extension (can be subclassed), but the method 'withText' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Property' final or making the method 'withText' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error misc FinalParameters Parameter text should be final. 77
 Error coding HiddenField 'text' hides a field. 77
 Error design DesignForExtension Class 'Property' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Property' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error design DesignForExtension Class 'Property' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Property' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 87
 Error javadoc JavadocMethod Missing a Javadoc comment. 87
 Error design DesignForExtension Class 'Property' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Property' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter name should be final. 93
 Error coding HiddenField 'name' hides a field. 93
 Error misc FinalParameters Parameter value should be final. 93
 Error design DesignForExtension Class 'Property' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Property' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 97
 Error javadoc JavadocMethod Missing a Javadoc comment. 97
 Error misc FinalParameters Parameter name should be final. 97
 Error coding HiddenField 'name' hides a field. 97
 Error misc FinalParameters Parameter value should be final. 97
 Error design DesignForExtension Class 'Property' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Property' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 102
 Error sizes LineLength Line is longer than 80 characters (found 105). 104
 Error design DesignForExtension Class 'Property' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'Property' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 107
 Error misc FinalParameters Parameter other should be final. 108
 Error coding SimplifyBooleanExpression Expression can be simplified. 112
 Error sizes LineLength Line is longer than 80 characters (found 147). 116

org/apache/streams/facebook/To.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 20
 Error javadoc JavadocVariable Missing a Javadoc comment. 27
 Error javadoc JavadocVariable Missing a Javadoc comment. 30
 Error sizes LineLength Line is longer than 80 characters (found 85). 31
 Error regexp RegexpSingleline Line has trailing spaces. 34
 Error regexp RegexpSingleline Line has trailing spaces. 44
 Error misc FinalParameters Parameter data should be final. 49
 Error coding HiddenField 'data' hides a field. 49
 Error design DesignForExtension Class 'To' looks like designed for extension (can be subclassed), but the method 'withData' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'To' final or making the method 'withData' static/final/abstract/empty, or adding allowed annotation for the method. 53
 Error javadoc JavadocMethod Missing a Javadoc comment. 53
 Error misc FinalParameters Parameter data should be final. 53
 Error coding HiddenField 'data' hides a field. 53
 Error design DesignForExtension Class 'To' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'To' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 58
 Error design DesignForExtension Class 'To' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'To' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error javadoc JavadocMethod Missing a Javadoc comment. 63
 Error design DesignForExtension Class 'To' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'To' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 68
 Error javadoc JavadocMethod Missing a Javadoc comment. 68
 Error misc FinalParameters Parameter name should be final. 69
 Error misc FinalParameters Parameter value should be final. 69
 Error design DesignForExtension Class 'To' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'To' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 73
 Error javadoc JavadocMethod Missing a Javadoc comment. 73
 Error misc FinalParameters Parameter name should be final. 73
 Error misc FinalParameters Parameter value should be final. 73
 Error design DesignForExtension Class 'To' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'To' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 78
 Error sizes LineLength Line is longer than 80 characters (found 92). 80
 Error design DesignForExtension Class 'To' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'To' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 83
 Error misc FinalParameters Parameter other should be final. 84
 Error coding SimplifyBooleanExpression Expression can be simplified. 88
 Error sizes LineLength Line is longer than 80 characters (found 124). 92

org/apache/streams/facebook/VoipInfo.java

Severity Category Rule Message Line
 Error javadoc JavadocType Missing a Javadoc comment. 17
 Error regexp RegexpSingleline Line has trailing spaces. 31
 Error regexp RegexpSingleline Line has trailing spaces. 36
 Error regexp RegexpSingleline Line has trailing spaces. 41
 Error regexp RegexpSingleline Line has trailing spaces. 46
 Error regexp RegexpSingleline Line has trailing spaces. 51
 Error regexp RegexpSingleline Line has trailing spaces. 56
 Error regexp RegexpSingleline Line has trailing spaces. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 65
 Error sizes LineLength Line is longer than 80 characters (found 85). 66
 Error regexp RegexpSingleline Line has trailing spaces. 69
 Error regexp RegexpSingleline Line has trailing spaces. 79
 Error misc FinalParameters Parameter hasMobileApp should be final. 84
 Error coding HiddenField 'hasMobileApp' hides a field. 84
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'withHasMobileApp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'withHasMobileApp' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error javadoc JavadocMethod Missing a Javadoc comment. 88
 Error misc FinalParameters Parameter hasMobileApp should be final. 88
 Error coding HiddenField 'hasMobileApp' hides a field. 88
 Error regexp RegexpSingleline Line has trailing spaces. 94
 Error regexp RegexpSingleline Line has trailing spaces. 104
 Error misc FinalParameters Parameter hasPermission should be final. 109
 Error coding HiddenField 'hasPermission' hides a field. 109
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'withHasPermission' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'withHasPermission' static/final/abstract/empty, or adding allowed annotation for the method. 113
 Error javadoc JavadocMethod Missing a Javadoc comment. 113
 Error misc FinalParameters Parameter hasPermission should be final. 113
 Error coding HiddenField 'hasPermission' hides a field. 113
 Error regexp RegexpSingleline Line has trailing spaces. 119
 Error regexp RegexpSingleline Line has trailing spaces. 129
 Error misc FinalParameters Parameter isCallable should be final. 134
 Error coding HiddenField 'isCallable' hides a field. 134
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'withIsCallable' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'withIsCallable' static/final/abstract/empty, or adding allowed annotation for the method. 138
 Error javadoc JavadocMethod Missing a Javadoc comment. 138
 Error misc FinalParameters Parameter isCallable should be final. 138
 Error coding HiddenField 'isCallable' hides a field. 138
 Error regexp RegexpSingleline Line has trailing spaces. 144
 Error regexp RegexpSingleline Line has trailing spaces. 154
 Error misc FinalParameters Parameter isCallableWebrtc should be final. 159
 Error coding HiddenField 'isCallableWebrtc' hides a field. 159
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'withIsCallableWebrtc' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'withIsCallableWebrtc' static/final/abstract/empty, or adding allowed annotation for the method. 163
 Error javadoc JavadocMethod Missing a Javadoc comment. 163
 Error misc FinalParameters Parameter isCallableWebrtc should be final. 163
 Error coding HiddenField 'isCallableWebrtc' hides a field. 163
 Error regexp RegexpSingleline Line has trailing spaces. 169
 Error regexp RegexpSingleline Line has trailing spaces. 179
 Error misc FinalParameters Parameter isPushable should be final. 184
 Error coding HiddenField 'isPushable' hides a field. 184
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'withIsPushable' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'withIsPushable' static/final/abstract/empty, or adding allowed annotation for the method. 188
 Error javadoc JavadocMethod Missing a Javadoc comment. 188
 Error misc FinalParameters Parameter isPushable should be final. 188
 Error coding HiddenField 'isPushable' hides a field. 188
 Error regexp RegexpSingleline Line has trailing spaces. 194
 Error regexp RegexpSingleline Line has trailing spaces. 204
 Error misc FinalParameters Parameter reasonCode should be final. 209
 Error coding HiddenField 'reasonCode' hides a field. 209
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'withReasonCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'withReasonCode' static/final/abstract/empty, or adding allowed annotation for the method. 213
 Error javadoc JavadocMethod Missing a Javadoc comment. 213
 Error misc FinalParameters Parameter reasonCode should be final. 213
 Error coding HiddenField 'reasonCode' hides a field. 213
 Error regexp RegexpSingleline Line has trailing spaces. 219
 Error regexp RegexpSingleline Line has trailing spaces. 229
 Error misc FinalParameters Parameter reasonDescription should be final. 234
 Error coding HiddenField 'reasonDescription' hides a field. 234
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'withReasonDescription' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'withReasonDescription' static/final/abstract/empty, or adding allowed annotation for the method. 238
 Error javadoc JavadocMethod Missing a Javadoc comment. 238
 Error misc FinalParameters Parameter reasonDescription should be final. 238
 Error coding HiddenField 'reasonDescription' hides a field. 238
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'toString' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'toString' static/final/abstract/empty, or adding allowed annotation for the method. 243
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'getAdditionalProperties' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'getAdditionalProperties' static/final/abstract/empty, or adding allowed annotation for the method. 248
 Error javadoc JavadocMethod Missing a Javadoc comment. 248
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'setAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'setAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 253
 Error javadoc JavadocMethod Missing a Javadoc comment. 253
 Error misc FinalParameters Parameter name should be final. 254
 Error misc FinalParameters Parameter value should be final. 254
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'withAdditionalProperty' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'withAdditionalProperty' static/final/abstract/empty, or adding allowed annotation for the method. 258
 Error javadoc JavadocMethod Missing a Javadoc comment. 258
 Error misc FinalParameters Parameter name should be final. 258
 Error misc FinalParameters Parameter value should be final. 258
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'hashCode' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'hashCode' static/final/abstract/empty, or adding allowed annotation for the method. 263
 Error sizes LineLength Line is longer than 80 characters (found 230). 265
 Error design DesignForExtension Class 'VoipInfo' looks like designed for extension (can be subclassed), but the method 'equals' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'VoipInfo' final or making the method 'equals' static/final/abstract/empty, or adding allowed annotation for the method. 268
 Error misc FinalParameters Parameter other should be final. 269
 Error coding SimplifyBooleanExpression Expression can be simplified. 273
 Error sizes LineLength Line is longer than 80 characters (found 382). 277

org/apache/streams/facebook/api/FacebookPageActivitySerializer.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline.
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocStyle First sentence should end with a period. 33
 Error sizes LineLength Line is longer than 80 characters (found 81). 37
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error design VisibilityModifier Variable 'mapper' must be private and have accessor methods. 39
 Error design DesignForExtension Class 'FacebookPageActivitySerializer' looks like designed for extension (can be subclassed), but the method 'serializationFormat' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageActivitySerializer' final or making the method 'serializationFormat' static/final/abstract/empty, or adding allowed annotation for the method. 44
 Error design DesignForExtension Class 'FacebookPageActivitySerializer' looks like designed for extension (can be subclassed), but the method 'serialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageActivitySerializer' final or making the method 'serialize' static/final/abstract/empty, or adding allowed annotation for the method. 49
 Error sizes LineLength Line is longer than 80 characters (found 83). 50
 Error misc FinalParameters Parameter deserialized should be final. 50
 Error sizes LineLength Line is longer than 80 characters (found 86). 51
 Error design DesignForExtension Class 'FacebookPageActivitySerializer' looks like designed for extension (can be subclassed), but the method 'deserialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageActivitySerializer' final or making the method 'deserialize' static/final/abstract/empty, or adding allowed annotation for the method. 54
 Error misc FinalParameters Parameter page should be final. 55
 Error design DesignForExtension Class 'FacebookPageActivitySerializer' looks like designed for extension (can be subclassed), but the method 'deserializeAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageActivitySerializer' final or making the method 'deserializeAll' static/final/abstract/empty, or adding allowed annotation for the method. 63
 Error misc FinalParameters Parameter serializedList should be final. 64
 Error sizes LineLength Line is longer than 80 characters (found 86). 65

org/apache/streams/facebook/api/FacebookPostActivitySerializer.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 109). 36
 Error javadoc JavadocType Missing a Javadoc comment. 36
 Error sizes LineLength Line is longer than 80 characters (found 110). 38
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error sizes LineLength Line is longer than 80 characters (found 92). 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 41
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error design VisibilityModifier Variable 'mapper' must be private and have accessor methods. 43
 Error design DesignForExtension Class 'FacebookPostActivitySerializer' looks like designed for extension (can be subclassed), but the method 'serializationFormat' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPostActivitySerializer' final or making the method 'serializationFormat' static/final/abstract/empty, or adding allowed annotation for the method. 45
 Error design DesignForExtension Class 'FacebookPostActivitySerializer' looks like designed for extension (can be subclassed), but the method 'serialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPostActivitySerializer' final or making the method 'serialize' static/final/abstract/empty, or adding allowed annotation for the method. 50
 Error sizes LineLength Line is longer than 80 characters (found 83). 51
 Error misc FinalParameters Parameter deserialized should be final. 51
 Error sizes LineLength Line is longer than 80 characters (found 86). 52
 Error design DesignForExtension Class 'FacebookPostActivitySerializer' looks like designed for extension (can be subclassed), but the method 'deserialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPostActivitySerializer' final or making the method 'deserialize' static/final/abstract/empty, or adding allowed annotation for the method. 55
 Error misc FinalParameters Parameter post should be final. 56
 Error design DesignForExtension Class 'FacebookPostActivitySerializer' looks like designed for extension (can be subclassed), but the method 'deserializeAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPostActivitySerializer' final or making the method 'deserializeAll' static/final/abstract/empty, or adding allowed annotation for the method. 64
 Error misc FinalParameters Parameter serializedList should be final. 65
 Error sizes LineLength Line is longer than 80 characters (found 86). 66

org/apache/streams/facebook/feed/FacebookPublicFeedXmlActivitySerializer.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.

org/apache/streams/facebook/processor/FacebookTypeConverter.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error sizes LineLength Line is longer than 80 characters (found 92). 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 55
 Error javadoc JavadocVariable Missing a Javadoc comment. 57
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error javadoc JavadocMethod Missing a Javadoc comment. 70
 Error misc FinalParameters Parameter inClass should be final. 70
 Error coding HiddenField 'inClass' hides a field. 70
 Error misc FinalParameters Parameter outClass should be final. 70
 Error coding HiddenField 'outClass' hides a field. 70
 Error design DesignForExtension Class 'FacebookTypeConverter' looks like designed for extension (can be subclassed), but the method 'getProcessorOutputQueue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookTypeConverter' final or making the method 'getProcessorOutputQueue' static/final/abstract/empty, or adding allowed annotation for the method. 75
 Error javadoc JavadocMethod Missing a Javadoc comment. 75
 Error design DesignForExtension Class 'FacebookTypeConverter' looks like designed for extension (can be subclassed), but the method 'setProcessorInputQueue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookTypeConverter' final or making the method 'setProcessorInputQueue' static/final/abstract/empty, or adding allowed annotation for the method. 79
 Error javadoc JavadocMethod Missing a Javadoc comment. 79
 Error misc FinalParameters Parameter inputQueue should be final. 79
 Error sizes LineLength Line is longer than 80 characters (found 134). 92
 Error misc FinalParameters Parameter event should be final. 92
 Error misc FinalParameters Parameter inClass should be final. 92
 Error coding HiddenField 'inClass' hides a field. 92
 Error misc FinalParameters Parameter outClass should be final. 92
 Error coding HiddenField 'outClass' hides a field. 92
 Error whitespace ParenPad '(' is followed by whitespace. 96
 Error whitespace ParenPad '(' is followed by whitespace. 96
 Error whitespace ParenPad ')' is preceded with whitespace. 96
 Error sizes LineLength Line is longer than 80 characters (found 100). 100
 Error sizes LineLength Line is longer than 80 characters (found 100). 103
 Error whitespace ParenPad '(' is followed by whitespace. 105
 Error whitespace ParenPad '(' is followed by whitespace. 105
 Error whitespace ParenPad ')' is preceded with whitespace. 105
 Error whitespace ParenPad '(' is followed by whitespace. 108
 Error whitespace ParenPad '(' is followed by whitespace. 111
 Error whitespace ParenPad '(' is followed by whitespace. 111
 Error whitespace ParenPad ')' is preceded with whitespace. 111
 Error whitespace ParenPad '(' is followed by whitespace. 117
 Error whitespace ParenPad ')' is preceded with whitespace. 117
 Error whitespace NoWhitespaceBefore '++' is preceded with whitespace. 118
 Error misc TodoComment Comment matches to-do format 'TODO:'. 127
 Error design DesignForExtension Class 'FacebookTypeConverter' looks like designed for extension (can be subclassed), but the method 'validate' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookTypeConverter' final or making the method 'validate' static/final/abstract/empty, or adding allowed annotation for the method. 128
 Error javadoc JavadocMethod Missing a Javadoc comment. 128
 Error misc FinalParameters Parameter document should be final. 128
 Error misc FinalParameters Parameter klass should be final. 128
 Error misc TodoComment Comment matches to-do format 'TODO:'. 132
 Error design DesignForExtension Class 'FacebookTypeConverter' looks like designed for extension (can be subclassed), but the method 'isValidJSON' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookTypeConverter' final or making the method 'isValidJSON' static/final/abstract/empty, or adding allowed annotation for the method. 133
 Error javadoc JavadocMethod Missing a Javadoc comment. 133
 Error blocks EmptyBlock Must have at least one statement. 138
 Error design DesignForExtension Class 'FacebookTypeConverter' looks like designed for extension (can be subclassed), but the method 'getId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookTypeConverter' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 148
 Error design DesignForExtension Class 'FacebookTypeConverter' looks like designed for extension (can be subclassed), but the method 'process' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookTypeConverter' final or making the method 'process' static/final/abstract/empty, or adding allowed annotation for the method. 153
 Error misc FinalParameters Parameter entry should be final. 154
 Error whitespace ParenPad '(' is followed by whitespace. 164
 Error whitespace ParenPad ')' is preceded with whitespace. 164
 Error whitespace ParenPad '(' is followed by whitespace. 167
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 171
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 171
 Error sizes LineLength Line is longer than 80 characters (found 95). 173
 Error coding HiddenField 'inClass' hides a field. 175
 Error whitespace ParenPad '(' is followed by whitespace. 179
 Error whitespace ParenPad '(' is followed by whitespace. 184
 Error sizes LineLength Line is longer than 80 characters (found 93). 189
 Error coding HiddenField 'inClass' hides a field. 189
 Error whitespace ParenPad '(' is followed by whitespace. 193
 Error sizes LineLength Line is longer than 80 characters (found 93). 197
 Error whitespace ParenPad '(' is followed by whitespace. 199
 Error whitespace ParenPad '(' is followed by whitespace. 210
 Error whitespace ParenPad ')' is preceded with whitespace. 210
 Error design DesignForExtension Class 'FacebookTypeConverter' looks like designed for extension (can be subclassed), but the method 'prepare' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookTypeConverter' final or making the method 'prepare' static/final/abstract/empty, or adding allowed annotation for the method. 217
 Error misc FinalParameters Parameter configurationObject should be final. 218
 Error whitespace WhitespaceAround '{' is not followed by whitespace. 226
 Error whitespace WhitespaceAround '}' is not preceded with whitespace. 226

org/apache/streams/facebook/provider/FacebookDataCollector.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error sizes LineLength Line is longer than 80 characters (found 88). 41
 Error sizes LineLength Line is longer than 80 characters (found 92). 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error javadoc JavadocVariable Missing a Javadoc comment. 49
 Error javadoc JavadocVariable Missing a Javadoc comment. 51
 Error design VisibilityModifier Variable 'backOff' must be private and have accessor methods. 51
 Error javadoc JavadocVariable Missing a Javadoc comment. 53
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error javadoc JavadocVariable Missing a Javadoc comment. 55
 Error sizes LineLength Line is longer than 80 characters (found 97). 62
 Error misc FinalParameters Parameter config should be final. 62
 Error coding HiddenField 'config' hides a field. 62
 Error misc FinalParameters Parameter queue should be final. 62
 Error coding HiddenField 'queue' hides a field. 62
 Error coding MagicNumber '5' is a magic number. 66
 Error sizes LineLength Line is longer than 80 characters (found 91). 76
 Error misc FinalParameters Parameter data should be final. 89
 Error misc FinalParameters Parameter id should be final. 89
 Error sizes LineLength Line is longer than 80 characters (found 88). 98
 Error sizes LineLength Line is longer than 80 characters (found 86). 112
 Error sizes LineLength Line is longer than 80 characters (found 83). 116
 Error design DesignForExtension Class 'FacebookDataCollector' looks like designed for extension (can be subclassed), but the method 'run' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookDataCollector' final or making the method 'run' static/final/abstract/empty, or adding allowed annotation for the method. 132
 Error whitespace ParenPad '(' is followed by whitespace. 134
 Error sizes LineLength Line is longer than 80 characters (found 85). 140
 Error design DesignForExtension Class 'FacebookDataCollector' looks like designed for extension (can be subclassed), but the method 'getQueue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookDataCollector' final or making the method 'getQueue' static/final/abstract/empty, or adding allowed annotation for the method. 147
 Error javadoc JavadocMethod Missing a Javadoc comment. 147

org/apache/streams/facebook/provider/FacebookEventClassifier.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline.
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 37
 Error sizes LineLength Line is longer than 80 characters (found 94). 39
 Error javadoc JavadocVariable Missing a Javadoc comment. 39
 Error whitespace ParenPad '(' is followed by whitespace. 46
 Error misc FinalParameters Parameter json should be final. 46
 Error whitespace ParenPad ')' is preceded with whitespace. 46
 Error sizes LineLength Line is longer than 80 characters (found 82). 53
 Error sizes LineLength Line is longer than 80 characters (found 82). 55
 Error whitespace ParenPad '(' is followed by whitespace. 59
 Error whitespace ParenPad '(' is followed by whitespace. 61
 Error whitespace ParenPad ')' is preceded with whitespace. 61

org/apache/streams/facebook/provider/FacebookFriendFeedProvider.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 82). 64
 Error javadoc JavadocType Missing a Javadoc comment. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 66
 Error sizes LineLength Line is longer than 80 characters (found 97). 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error naming ConstantName Name 'mapper' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 70
 Error sizes LineLength Line is longer than 80 characters (found 1,393). 72
 Error javadoc JavadocVariable Missing a Javadoc comment. 72
 Error javadoc JavadocVariable Missing a Javadoc comment. 73
 Error javadoc JavadocVariable Missing a Javadoc comment. 75
 Error javadoc JavadocVariable Missing a Javadoc comment. 76
 Error design VisibilityModifier Variable 'lock' must be private and have accessor methods. 76
 Error sizes LineLength Line is longer than 80 characters (found 85). 78
 Error javadoc JavadocVariable Missing a Javadoc comment. 78
 Error design VisibilityModifier Variable 'providerQueue' must be private and have accessor methods. 78
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'getConfig' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'getConfig' static/final/abstract/empty, or adding allowed annotation for the method. 80
 Error javadoc JavadocMethod Missing a Javadoc comment. 80
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'setConfig' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'setConfig' static/final/abstract/empty, or adding allowed annotation for the method. 84
 Error javadoc JavadocMethod Missing a Javadoc comment. 84
 Error misc FinalParameters Parameter config should be final. 84
 Error javadoc JavadocVariable Missing a Javadoc comment. 88
 Error design VisibilityModifier Variable 'idsBatches' must be private and have accessor methods. 88
 Error javadoc JavadocVariable Missing a Javadoc comment. 90
 Error design VisibilityModifier Variable 'executor' must be private and have accessor methods. 90
 Error javadoc JavadocVariable Missing a Javadoc comment. 92
 Error design VisibilityModifier Variable 'start' must be private and have accessor methods. 92
 Error javadoc JavadocVariable Missing a Javadoc comment. 93
 Error design VisibilityModifier Variable 'end' must be private and have accessor methods. 93
 Error javadoc JavadocVariable Missing a Javadoc comment. 95
 Error design VisibilityModifier Variable 'running' must be private and have accessor methods. 95
 Error javadoc JavadocVariable Missing a Javadoc comment. 97
 Error javadoc JavadocVariable Missing a Javadoc comment. 98
 Error sizes LineLength Line is longer than 80 characters (found 97). 100
 Error javadoc JavadocMethod Missing a Javadoc comment. 100
 Error misc FinalParameters Parameter numThreads should be final. 100
 Error misc FinalParameters Parameter queueSize should be final. 100
 Error coding MagicNumber '5000L' is a magic number. 102
 Error sizes LineLength Line is longer than 80 characters (found 94). 103
 Error sizes LineLength Line is longer than 80 characters (found 112). 107
 Error coding HiddenField 'configuration' hides a field. 111
 Error sizes LineLength Line is longer than 80 characters (found 136). 113
 Error sizes LineLength Line is longer than 80 characters (found 97). 120
 Error misc FinalParameters Parameter config should be final. 122
 Error javadoc JavadocMethod Expected @param tag for 'config'. 122
 Error misc FinalParameters Parameter klass should be final. 130
 Error coding HiddenField 'klass' hides a field. 130
 Error coding HiddenField 'configuration' hides a field. 132
 Error sizes LineLength Line is longer than 80 characters (found 136). 134
 Error sizes LineLength Line is longer than 80 characters (found 90). 142
 Error javadoc JavadocMethod Missing a Javadoc comment. 142
 Error misc FinalParameters Parameter config should be final. 142
 Error misc FinalParameters Parameter klass should be final. 142
 Error coding HiddenField 'klass' hides a field. 142
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'getProviderQueue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'getProviderQueue' static/final/abstract/empty, or adding allowed annotation for the method. 147
 Error javadoc JavadocMethod Missing a Javadoc comment. 147
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'getId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 151
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'startStream' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'startStream' static/final/abstract/empty, or adding allowed annotation for the method. 156
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'readCurrent' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'readCurrent' static/final/abstract/empty, or adding allowed annotation for the method. 162
 Error sizes LineLength Line is longer than 80 characters (found 81). 168
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'readNew' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'readNew' static/final/abstract/empty, or adding allowed annotation for the method. 180
 Error misc FinalParameters Parameter sequence should be final. 181
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'readRange' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'readRange' static/final/abstract/empty, or adding allowed annotation for the method. 186
 Error misc FinalParameters Parameter start should be final. 187
 Error coding HiddenField 'start' hides a field. 187
 Error misc FinalParameters Parameter end should be final. 187
 Error coding HiddenField 'end' hides a field. 187
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 192
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'isRunning' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'isRunning' static/final/abstract/empty, or adding allowed annotation for the method. 195
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'shutdownAndAwaitTermination' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'shutdownAndAwaitTermination' static/final/abstract/empty, or adding allowed annotation for the method. 200
 Error javadoc JavadocMethod Missing a Javadoc comment. 200
 Error misc FinalParameters Parameter pool should be final. 200
 Error coding MagicNumber '10' is a magic number. 204
 Error coding MagicNumber '10' is a magic number. 207
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'prepare' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'prepare' static/final/abstract/empty, or adding allowed annotation for the method. 219
 Error misc FinalParameters Parameter configurationObject should be final. 220
 Error coding MagicNumber '5' is a magic number. 222
 Error coding MagicNumber '20' is a magic number. 222
 Error whitespace ParenPad '(' is followed by whitespace. 237
 Error whitespace ParenPad ')' is preceded with whitespace. 237
 Error whitespace ParenPad '(' is followed by whitespace. 243
 Error whitespace ParenPad ')' is preceded with whitespace. 245
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'getFacebookClient' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'getFacebookClient' static/final/abstract/empty, or adding allowed annotation for the method. 252
 Error javadoc JavadocMethod Missing a Javadoc comment. 252
 Error design DesignForExtension Class 'FacebookFriendFeedProvider' looks like designed for extension (can be subclassed), but the method 'cleanUp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendFeedProvider' final or making the method 'cleanUp' static/final/abstract/empty, or adding allowed annotation for the method. 268
 Error javadoc JavadocType Missing a Javadoc comment. 273
 Error javadoc JavadocVariable Missing a Javadoc comment. 275
 Error design VisibilityModifier Variable 'provider' must be private and have accessor methods. 275
 Error javadoc JavadocVariable Missing a Javadoc comment. 276
 Error design VisibilityModifier Variable 'client' must be private and have accessor methods. 276
 Error javadoc JavadocVariable Missing a Javadoc comment. 277
 Error design VisibilityModifier Variable 'id' must be private and have accessor methods. 277
 Error sizes LineLength Line is longer than 80 characters (found 83). 279
 Error javadoc JavadocMethod Missing a Javadoc comment. 279
 Error modifier RedundantModifier Redundant 'public' modifier. 279
 Error misc FinalParameters Parameter provider should be final. 279
 Error coding HiddenField 'provider' hides a field. 279
 Error misc FinalParameters Parameter id should be final. 279
 Error coding HiddenField 'id' hides a field. 279
 Error sizes LineLength Line is longer than 80 characters (found 115). 294
 Error sizes LineLength Line is longer than 80 characters (found 86). 297
 Error whitespace ParenPad '(' is followed by whitespace. 306
 Error whitespace ParenPad ')' is preceded with whitespace. 308

org/apache/streams/facebook/provider/FacebookFriendUpdatesProvider.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 85). 70
 Error javadoc JavadocVariable Missing a Javadoc comment. 72
 Error sizes LineLength Line is longer than 80 characters (found 100). 74
 Error javadoc JavadocVariable Missing a Javadoc comment. 74
 Error javadoc JavadocVariable Missing a Javadoc comment. 76
 Error naming ConstantName Name 'mapper' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 76
 Error javadoc JavadocVariable Missing a Javadoc comment. 78
 Error sizes LineLength Line is longer than 80 characters (found 1,351). 79
 Error javadoc JavadocVariable Missing a Javadoc comment. 81
 Error javadoc JavadocVariable Missing a Javadoc comment. 83
 Error javadoc JavadocVariable Missing a Javadoc comment. 84
 Error design VisibilityModifier Variable 'lock' must be private and have accessor methods. 84
 Error sizes LineLength Line is longer than 80 characters (found 85). 86
 Error javadoc JavadocVariable Missing a Javadoc comment. 86
 Error design VisibilityModifier Variable 'providerQueue' must be private and have accessor methods. 86
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'getConfig' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'getConfig' static/final/abstract/empty, or adding allowed annotation for the method. 88
 Error javadoc JavadocMethod Missing a Javadoc comment. 88
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'setConfig' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'setConfig' static/final/abstract/empty, or adding allowed annotation for the method. 92
 Error javadoc JavadocMethod Missing a Javadoc comment. 92
 Error misc FinalParameters Parameter config should be final. 92
 Error javadoc JavadocVariable Missing a Javadoc comment. 96
 Error design VisibilityModifier Variable 'idsBatches' must be private and have accessor methods. 96
 Error javadoc JavadocVariable Missing a Javadoc comment. 98
 Error design VisibilityModifier Variable 'executor' must be private and have accessor methods. 98
 Error javadoc JavadocVariable Missing a Javadoc comment. 100
 Error design VisibilityModifier Variable 'start' must be private and have accessor methods. 100
 Error javadoc JavadocVariable Missing a Javadoc comment. 101
 Error design VisibilityModifier Variable 'end' must be private and have accessor methods. 101
 Error javadoc JavadocVariable Missing a Javadoc comment. 103
 Error design VisibilityModifier Variable 'running' must be private and have accessor methods. 103
 Error javadoc JavadocVariable Missing a Javadoc comment. 105
 Error javadoc JavadocVariable Missing a Javadoc comment. 106
 Error misc TodoComment Comment matches to-do format 'TODO:'. 108
 Error sizes LineLength Line is longer than 80 characters (found 97). 109
 Error javadoc JavadocMethod Missing a Javadoc comment. 109
 Error misc FinalParameters Parameter numThreads should be final. 109
 Error misc FinalParameters Parameter queueSize should be final. 109
 Error coding MagicNumber '5000L' is a magic number. 111
 Error sizes LineLength Line is longer than 80 characters (found 94). 112
 Error sizes LineLength Line is longer than 80 characters (found 115). 116
 Error coding HiddenField 'configuration' hides a field. 120
 Error sizes LineLength Line is longer than 80 characters (found 136). 122
 Error sizes LineLength Line is longer than 80 characters (found 95). 129
 Error misc FinalParameters Parameter config should be final. 131
 Error javadoc JavadocMethod Expected @param tag for 'config'. 131
 Error misc FinalParameters Parameter klass should be final. 140
 Error coding HiddenField 'klass' hides a field. 140
 Error javadoc JavadocMethod Expected @param tag for 'klass'. 140
 Error coding HiddenField 'configuration' hides a field. 142
 Error sizes LineLength Line is longer than 80 characters (found 136). 144
 Error sizes LineLength Line is longer than 80 characters (found 93). 157
 Error misc FinalParameters Parameter config should be final. 157
 Error javadoc JavadocMethod Expected @param tag for 'config'. 157
 Error misc FinalParameters Parameter klass should be final. 157
 Error coding HiddenField 'klass' hides a field. 157
 Error javadoc JavadocMethod Expected @param tag for 'klass'. 157
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'getProviderQueue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'getProviderQueue' static/final/abstract/empty, or adding allowed annotation for the method. 162
 Error javadoc JavadocMethod Missing a Javadoc comment. 162
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'getId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 166
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'startStream' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'startStream' static/final/abstract/empty, or adding allowed annotation for the method. 171
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'readCurrent' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'readCurrent' static/final/abstract/empty, or adding allowed annotation for the method. 176
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'readNew' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'readNew' static/final/abstract/empty, or adding allowed annotation for the method. 198
 Error misc FinalParameters Parameter sequence should be final. 199
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'readRange' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'readRange' static/final/abstract/empty, or adding allowed annotation for the method. 204
 Error misc FinalParameters Parameter start should be final. 205
 Error coding HiddenField 'start' hides a field. 205
 Error misc FinalParameters Parameter end should be final. 205
 Error coding HiddenField 'end' hides a field. 205
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 210
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'isRunning' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'isRunning' static/final/abstract/empty, or adding allowed annotation for the method. 213
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'shutdownAndAwaitTermination' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'shutdownAndAwaitTermination' static/final/abstract/empty, or adding allowed annotation for the method. 218
 Error javadoc JavadocMethod Missing a Javadoc comment. 218
 Error misc FinalParameters Parameter pool should be final. 218
 Error coding MagicNumber '10' is a magic number. 222
 Error coding MagicNumber '10' is a magic number. 225
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'prepare' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'prepare' static/final/abstract/empty, or adding allowed annotation for the method. 237
 Error misc FinalParameters Parameter configurationObject should be final. 238
 Error coding MagicNumber '5' is a magic number. 240
 Error coding MagicNumber '20' is a magic number. 240
 Error whitespace ParenPad '(' is followed by whitespace. 257
 Error whitespace ParenPad ')' is preceded with whitespace. 259
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'getFacebookClient' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'getFacebookClient' static/final/abstract/empty, or adding allowed annotation for the method. 266
 Error javadoc JavadocMethod Missing a Javadoc comment. 266
 Error design DesignForExtension Class 'FacebookFriendUpdatesProvider' looks like designed for extension (can be subclassed), but the method 'cleanUp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookFriendUpdatesProvider' final or making the method 'cleanUp' static/final/abstract/empty, or adding allowed annotation for the method. 282
 Error javadoc JavadocType Missing a Javadoc comment. 287
 Error javadoc JavadocVariable Missing a Javadoc comment. 289
 Error design VisibilityModifier Variable 'provider' must be private and have accessor methods. 289
 Error javadoc JavadocVariable Missing a Javadoc comment. 290
 Error design VisibilityModifier Variable 'client' must be private and have accessor methods. 290
 Error javadoc JavadocVariable Missing a Javadoc comment. 292
 Error sizes LineLength Line is longer than 80 characters (found 91). 294
 Error javadoc JavadocMethod Missing a Javadoc comment. 294
 Error modifier RedundantModifier Redundant 'public' modifier. 294
 Error misc FinalParameters Parameter facebookUserstreamProvider should be final. 294
 Error sizes LineLength Line is longer than 80 characters (found 108). 305
 Error sizes LineLength Line is longer than 80 characters (found 111). 306
 Error sizes LineLength Line is longer than 80 characters (found 115). 309
 Error sizes LineLength Line is longer than 80 characters (found 86). 312

org/apache/streams/facebook/provider/FacebookProvider.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline.
 Error javadoc JavadocVariable Missing a Javadoc comment. 58
 Error sizes LineLength Line is longer than 80 characters (found 87). 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 61
 Error javadoc JavadocVariable Missing a Javadoc comment. 62
 Error javadoc JavadocVariable Missing a Javadoc comment. 64
 Error design VisibilityModifier Variable 'configuration' must be private and have accessor methods. 64
 Error javadoc JavadocVariable Missing a Javadoc comment. 65
 Error design VisibilityModifier Variable 'datums' must be private and have accessor methods. 65
 Error javadoc JavadocVariable Missing a Javadoc comment. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error javadoc JavadocVariable Missing a Javadoc comment. 69
 Error design VisibilityModifier Variable 'futures' must be private and have accessor methods. 69
 Error javadoc JavadocVariable Missing a Javadoc comment. 71
 Error sizes LineLength Line is longer than 80 characters (found 87). 74
 Error sizes LineLength Line is longer than 80 characters (found 168). 78
 Error misc FinalParameters Parameter configuration should be final. 87
 Error coding HiddenField 'configuration' hides a field. 87
 Error javadoc JavadocMethod Expected @param tag for 'configuration'. 87
 Error design DesignForExtension Class 'FacebookProvider' looks like designed for extension (can be subclassed), but the method 'getId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookProvider' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 91
 Error design DesignForExtension Class 'FacebookProvider' looks like designed for extension (can be subclassed), but the method 'startStream' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookProvider' final or making the method 'startStream' static/final/abstract/empty, or adding allowed annotation for the method. 96
 Error javadoc JavadocMethod Missing a Javadoc comment. 103
 Error design DesignForExtension Class 'FacebookProvider' looks like designed for extension (can be subclassed), but the method 'readCurrent' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookProvider' final or making the method 'readCurrent' static/final/abstract/empty, or adding allowed annotation for the method. 105
 Error sizes LineLength Line is longer than 80 characters (found 93). 110
 Error design DesignForExtension Class 'FacebookProvider' looks like designed for extension (can be subclassed), but the method 'readNew' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookProvider' final or making the method 'readNew' static/final/abstract/empty, or adding allowed annotation for the method. 116
 Error misc FinalParameters Parameter sequence should be final. 117
 Error design DesignForExtension Class 'FacebookProvider' looks like designed for extension (can be subclassed), but the method 'readRange' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookProvider' final or making the method 'readRange' static/final/abstract/empty, or adding allowed annotation for the method. 121
 Error misc FinalParameters Parameter start should be final. 122
 Error misc FinalParameters Parameter end should be final. 122
 Error design DesignForExtension Class 'FacebookProvider' looks like designed for extension (can be subclassed), but the method 'prepare' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookProvider' final or making the method 'prepare' static/final/abstract/empty, or adding allowed annotation for the method. 126
 Error misc FinalParameters Parameter configurationObject should be final. 127
 Error sizes LineLength Line is longer than 80 characters (found 86). 130
 Error design DesignForExtension Class 'FacebookProvider' looks like designed for extension (can be subclassed), but the method 'cleanUp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookProvider' final or making the method 'cleanUp' static/final/abstract/empty, or adding allowed annotation for the method. 133
 Error coding MagicNumber '5' is a magic number. 135
 Error coding MagicNumber '5' is a magic number. 135
 Error misc FinalParameters Parameter idsToAfterDate should be final. 143
 Error design DesignForExtension Class 'FacebookProvider' looks like designed for extension (can be subclassed), but the method 'isRunning' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookProvider' final or making the method 'isRunning' static/final/abstract/empty, or adding allowed annotation for the method. 154
 Error sizes LineLength Line is longer than 80 characters (found 93). 156

org/apache/streams/facebook/provider/FacebookUserInformationProvider.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 87). 63
 Error javadoc JavadocType Missing a Javadoc comment. 63
 Error javadoc JavadocVariable Missing a Javadoc comment. 65
 Error sizes LineLength Line is longer than 80 characters (found 102). 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 67
 Error javadoc JavadocVariable Missing a Javadoc comment. 69
 Error naming ConstantName Name 'mapper' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 69
 Error sizes LineLength Line is longer than 80 characters (found 1,393). 71
 Error javadoc JavadocVariable Missing a Javadoc comment. 71
 Error sizes LineLength Line is longer than 80 characters (found 84). 72
 Error javadoc JavadocVariable Missing a Javadoc comment. 72
 Error javadoc JavadocVariable Missing a Javadoc comment. 74
 Error sizes LineLength Line is longer than 80 characters (found 85). 75
 Error javadoc JavadocVariable Missing a Javadoc comment. 75
 Error design VisibilityModifier Variable 'providerQueue' must be private and have accessor methods. 75
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'getConfig' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'getConfig' static/final/abstract/empty, or adding allowed annotation for the method. 77
 Error javadoc JavadocMethod Missing a Javadoc comment. 77
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'setConfig' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'setConfig' static/final/abstract/empty, or adding allowed annotation for the method. 81
 Error javadoc JavadocMethod Missing a Javadoc comment. 81
 Error misc FinalParameters Parameter config should be final. 81
 Error javadoc JavadocVariable Missing a Javadoc comment. 85
 Error design VisibilityModifier Variable 'idsBatches' must be private and have accessor methods. 85
 Error javadoc JavadocVariable Missing a Javadoc comment. 87
 Error design VisibilityModifier Variable 'executor' must be private and have accessor methods. 87
 Error javadoc JavadocVariable Missing a Javadoc comment. 89
 Error design VisibilityModifier Variable 'start' must be private and have accessor methods. 89
 Error javadoc JavadocVariable Missing a Javadoc comment. 90
 Error design VisibilityModifier Variable 'end' must be private and have accessor methods. 90
 Error javadoc JavadocVariable Missing a Javadoc comment. 92
 Error design VisibilityModifier Variable 'running' must be private and have accessor methods. 92
 Error sizes LineLength Line is longer than 80 characters (found 97). 94
 Error javadoc JavadocMethod Missing a Javadoc comment. 94
 Error misc FinalParameters Parameter numThreads should be final. 94
 Error misc FinalParameters Parameter queueSize should be final. 94
 Error coding MagicNumber '5000L' is a magic number. 96
 Error sizes LineLength Line is longer than 80 characters (found 94). 97
 Error sizes LineLength Line is longer than 80 characters (found 117). 101
 Error coding HiddenField 'facebookUserInformationConfiguration' hides a field. 105
 Error sizes LineLength Line is longer than 80 characters (found 159). 107
 Error sizes LineLength Line is longer than 80 characters (found 101). 114
 Error sizes LineLength Line is longer than 80 characters (found 87). 117
 Error misc FinalParameters Parameter config should be final. 117
 Error javadoc JavadocMethod Expected @param tag for 'config'. 117
 Error javadoc JavadocMethod Missing a Javadoc comment. 121
 Error misc FinalParameters Parameter klass should be final. 121
 Error coding HiddenField 'klass' hides a field. 121
 Error coding HiddenField 'facebookUserInformationConfiguration' hides a field. 123
 Error sizes LineLength Line is longer than 80 characters (found 159). 125
 Error sizes LineLength Line is longer than 80 characters (found 100). 133
 Error javadoc JavadocMethod Missing a Javadoc comment. 133
 Error misc FinalParameters Parameter config should be final. 133
 Error misc FinalParameters Parameter klass should be final. 133
 Error coding HiddenField 'klass' hides a field. 133
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'getProviderQueue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'getProviderQueue' static/final/abstract/empty, or adding allowed annotation for the method. 138
 Error javadoc JavadocMethod Missing a Javadoc comment. 138
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'getId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 142
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'startStream' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'startStream' static/final/abstract/empty, or adding allowed annotation for the method. 147
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'readCurrent' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'readCurrent' static/final/abstract/empty, or adding allowed annotation for the method. 152
 Error whitespace ParenPad '(' is followed by whitespace. 197
 Error whitespace ParenPad ')' is preceded with whitespace. 197
 Error whitespace ParenPad '(' is followed by whitespace. 212
 Error whitespace ParenPad ')' is preceded with whitespace. 214
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'readNew' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'readNew' static/final/abstract/empty, or adding allowed annotation for the method. 234
 Error misc FinalParameters Parameter sequence should be final. 235
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'readRange' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'readRange' static/final/abstract/empty, or adding allowed annotation for the method. 240
 Error misc FinalParameters Parameter start should be final. 241
 Error coding HiddenField 'start' hides a field. 241
 Error misc FinalParameters Parameter end should be final. 241
 Error coding HiddenField 'end' hides a field. 241
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 246
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'isRunning' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'isRunning' static/final/abstract/empty, or adding allowed annotation for the method. 249
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'shutdownAndAwaitTermination' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'shutdownAndAwaitTermination' static/final/abstract/empty, or adding allowed annotation for the method. 254
 Error javadoc JavadocMethod Missing a Javadoc comment. 254
 Error misc FinalParameters Parameter pool should be final. 254
 Error coding MagicNumber '10' is a magic number. 258
 Error coding MagicNumber '10' is a magic number. 261
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'prepare' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'prepare' static/final/abstract/empty, or adding allowed annotation for the method. 273
 Error misc FinalParameters Parameter configurationObject should be final. 274
 Error sizes LineLength Line is longer than 80 characters (found 88). 276
 Error coding MagicNumber '5' is a magic number. 276
 Error coding MagicNumber '20' is a magic number. 276
 Error sizes LineLength Line is longer than 80 characters (found 87). 280
 Error sizes LineLength Line is longer than 80 characters (found 91). 281
 Error sizes LineLength Line is longer than 80 characters (found 97). 282
 Error coding HiddenField 'idsBatches' hides a field. 286
 Error coding MagicNumber '100' is a magic number. 292
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'getFacebookClient' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'getFacebookClient' static/final/abstract/empty, or adding allowed annotation for the method. 309
 Error javadoc JavadocMethod Missing a Javadoc comment. 309
 Error sizes LineLength Line is longer than 80 characters (found 82). 312
 Error sizes LineLength Line is longer than 80 characters (found 90). 313
 Error sizes LineLength Line is longer than 80 characters (found 98). 314
 Error design DesignForExtension Class 'FacebookUserInformationProvider' looks like designed for extension (can be subclassed), but the method 'cleanUp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserInformationProvider' final or making the method 'cleanUp' static/final/abstract/empty, or adding allowed annotation for the method. 324

org/apache/streams/facebook/provider/FacebookUserstreamProvider.java

Severity Category Rule Message Line
 Error sizes LineLength Line is longer than 80 characters (found 82). 66
 Error javadoc JavadocType Missing a Javadoc comment. 66
 Error javadoc JavadocVariable Missing a Javadoc comment. 68
 Error sizes LineLength Line is longer than 80 characters (found 97). 70
 Error javadoc JavadocVariable Missing a Javadoc comment. 70
 Error javadoc JavadocVariable Missing a Javadoc comment. 72
 Error naming ConstantName Name 'mapper' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 72
 Error javadoc JavadocVariable Missing a Javadoc comment. 74
 Error javadoc JavadocVariable Missing a Javadoc comment. 75
 Error javadoc JavadocVariable Missing a Javadoc comment. 77
 Error javadoc JavadocVariable Missing a Javadoc comment. 78
 Error design VisibilityModifier Variable 'lock' must be private and have accessor methods. 78
 Error sizes LineLength Line is longer than 80 characters (found 85). 80
 Error javadoc JavadocVariable Missing a Javadoc comment. 80
 Error design VisibilityModifier Variable 'providerQueue' must be private and have accessor methods. 80
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'getConfig' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'getConfig' static/final/abstract/empty, or adding allowed annotation for the method. 82
 Error javadoc JavadocMethod Missing a Javadoc comment. 82
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'setConfig' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'setConfig' static/final/abstract/empty, or adding allowed annotation for the method. 86
 Error javadoc JavadocMethod Missing a Javadoc comment. 86
 Error misc FinalParameters Parameter config should be final. 86
 Error javadoc JavadocVariable Missing a Javadoc comment. 90
 Error design VisibilityModifier Variable 'executor' must be private and have accessor methods. 90
 Error javadoc JavadocVariable Missing a Javadoc comment. 92
 Error design VisibilityModifier Variable 'start' must be private and have accessor methods. 92
 Error javadoc JavadocVariable Missing a Javadoc comment. 93
 Error design VisibilityModifier Variable 'end' must be private and have accessor methods. 93
 Error javadoc JavadocVariable Missing a Javadoc comment. 95
 Error design VisibilityModifier Variable 'running' must be private and have accessor methods. 95
 Error javadoc JavadocVariable Missing a Javadoc comment. 97
 Error javadoc JavadocVariable Missing a Javadoc comment. 98
 Error javadoc JavadocVariable Missing a Javadoc comment. 100
 Error design VisibilityModifier Variable 'client' must be private and have accessor methods. 100
 Error sizes LineLength Line is longer than 80 characters (found 97). 102
 Error javadoc JavadocMethod Missing a Javadoc comment. 102
 Error misc FinalParameters Parameter numThreads should be final. 102
 Error misc FinalParameters Parameter queueSize should be final. 102
 Error coding MagicNumber '5000L' is a magic number. 104
 Error sizes LineLength Line is longer than 80 characters (found 94). 105
 Error sizes LineLength Line is longer than 80 characters (found 159). 115
 Error misc FinalParameters Parameter config should be final. 125
 Error misc FinalParameters Parameter klass should be final. 133
 Error coding HiddenField 'klass' hides a field. 133
 Error sizes LineLength Line is longer than 80 characters (found 159). 137
 Error sizes LineLength Line is longer than 80 characters (found 90). 145
 Error javadoc JavadocMethod Missing a Javadoc comment. 145
 Error misc FinalParameters Parameter config should be final. 145
 Error misc FinalParameters Parameter klass should be final. 145
 Error coding HiddenField 'klass' hides a field. 145
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'getProviderQueue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'getProviderQueue' static/final/abstract/empty, or adding allowed annotation for the method. 150
 Error javadoc JavadocMethod Missing a Javadoc comment. 150
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'getId' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'getId' static/final/abstract/empty, or adding allowed annotation for the method. 154
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'startStream' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'startStream' static/final/abstract/empty, or adding allowed annotation for the method. 159
 Error whitespace ParenPad '(' is followed by whitespace. 164
 Error whitespace ParenPad ')' is preceded with whitespace. 166
 Error whitespace ParenPad '(' is followed by whitespace. 167
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'readCurrent' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'readCurrent' static/final/abstract/empty, or adding allowed annotation for the method. 183
 Error sizes LineLength Line is longer than 80 characters (found 81). 189
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'readNew' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'readNew' static/final/abstract/empty, or adding allowed annotation for the method. 201
 Error misc FinalParameters Parameter sequence should be final. 202
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'readRange' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'readRange' static/final/abstract/empty, or adding allowed annotation for the method. 207
 Error misc FinalParameters Parameter start should be final. 208
 Error coding HiddenField 'start' hides a field. 208
 Error misc FinalParameters Parameter end should be final. 208
 Error coding HiddenField 'end' hides a field. 208
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'isRunning' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'isRunning' static/final/abstract/empty, or adding allowed annotation for the method. 216
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'shutdownAndAwaitTermination' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'shutdownAndAwaitTermination' static/final/abstract/empty, or adding allowed annotation for the method. 221
 Error javadoc JavadocMethod Missing a Javadoc comment. 221
 Error misc FinalParameters Parameter pool should be final. 221
 Error coding MagicNumber '10' is a magic number. 225
 Error coding MagicNumber '10' is a magic number. 228
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'prepare' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'prepare' static/final/abstract/empty, or adding allowed annotation for the method. 240
 Error misc FinalParameters Parameter configurationObject should be final. 241
 Error coding MagicNumber '5' is a magic number. 243
 Error coding MagicNumber '20' is a magic number. 243
 Error whitespace ParenPad '(' is followed by whitespace. 253
 Error whitespace ParenPad ')' is preceded with whitespace. 255
 Error coding MagicNumber '100' is a magic number. 264
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'getFacebookClient' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'getFacebookClient' static/final/abstract/empty, or adding allowed annotation for the method. 276
 Error javadoc JavadocMethod Missing a Javadoc comment. 276
 Error design DesignForExtension Class 'FacebookUserstreamProvider' looks like designed for extension (can be subclassed), but the method 'cleanUp' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookUserstreamProvider' final or making the method 'cleanUp' static/final/abstract/empty, or adding allowed annotation for the method. 290
 Error javadoc JavadocType Missing a Javadoc comment. 295
 Error javadoc JavadocVariable Missing a Javadoc comment. 297
 Error design VisibilityModifier Variable 'provider' must be private and have accessor methods. 297
 Error javadoc JavadocVariable Missing a Javadoc comment. 298
 Error design VisibilityModifier Variable 'client' must be private and have accessor methods. 298
 Error javadoc JavadocVariable Missing a Javadoc comment. 299
 Error design VisibilityModifier Variable 'id' must be private and have accessor methods. 299
 Error javadoc JavadocVariable Missing a Javadoc comment. 301
 Error sizes LineLength Line is longer than 80 characters (found 91). 303
 Error javadoc JavadocMethod Missing a Javadoc comment. 303
 Error modifier RedundantModifier Redundant 'public' modifier. 303
 Error misc FinalParameters Parameter facebookUserstreamProvider should be final. 303
 Error sizes LineLength Line is longer than 80 characters (found 102). 307
 Error javadoc JavadocMethod Missing a Javadoc comment. 307
 Error modifier RedundantModifier Redundant 'public' modifier. 307
 Error misc FinalParameters Parameter facebookUserstreamProvider should be final. 307
 Error misc FinalParameters Parameter id should be final. 307
 Error coding HiddenField 'id' hides a field. 307
 Error sizes LineLength Line is longer than 80 characters (found 108). 321
 Error sizes LineLength Line is longer than 80 characters (found 111). 322
 Error sizes LineLength Line is longer than 80 characters (found 126). 323
 Error sizes LineLength Line is longer than 80 characters (found 115). 326
 Error sizes LineLength Line is longer than 80 characters (found 86). 329

org/apache/streams/facebook/provider/page/FacebookPageDataCollector.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error sizes LineLength Line is longer than 80 characters (found 96). 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 42
 Error javadoc JavadocVariable Missing a Javadoc comment. 43
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error sizes LineLength Line is longer than 80 characters (found 108). 46
 Error javadoc JavadocMethod Missing a Javadoc comment. 46
 Error misc FinalParameters Parameter queue should be final. 46
 Error misc FinalParameters Parameter configuration should be final. 46
 Error design DesignForExtension Class 'FacebookPageDataCollector' looks like designed for extension (can be subclassed), but the method 'getData' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageDataCollector' final or making the method 'getData' static/final/abstract/empty, or adding allowed annotation for the method. 50
 Error misc FinalParameters Parameter id should be final. 51
 Error sizes LineLength Line is longer than 80 characters (found 147). 56
 Error design DesignForExtension Class 'FacebookPageDataCollector' looks like designed for extension (can be subclassed), but the method 'getPage' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageDataCollector' final or making the method 'getPage' static/final/abstract/empty, or adding allowed annotation for the method. 60
 Error javadoc JavadocMethod Missing a Javadoc comment. 60
 Error misc FinalParameters Parameter pageId should be final. 60
 Error sizes LineLength Line is longer than 80 characters (found 123). 68
 Error coding MagicNumber '17' is a magic number. 73
 Error coding MagicNumber '4' is a magic number. 73
 Error coding MagicNumber '341' is a magic number. 73
 Error sizes LineLength Line is longer than 80 characters (found 82). 78
 Error design DesignForExtension Class 'FacebookPageDataCollector' looks like designed for extension (can be subclassed), but the method 'getQueue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageDataCollector' final or making the method 'getQueue' static/final/abstract/empty, or adding allowed annotation for the method. 81
 Error javadoc JavadocMethod Missing a Javadoc comment. 81

org/apache/streams/facebook/provider/page/FacebookPageProvider.java

Severity Category Rule Message Line
 Error javadoc JavadocStyle First sentence should end with a period. 49
 Error sizes LineLength Line is longer than 80 characters (found 138). 60
 Error javadoc JavadocVariable Missing a Javadoc comment. 73
 Error sizes LineLength Line is longer than 80 characters (found 91). 75
 Error javadoc JavadocVariable Missing a Javadoc comment. 75
 Error javadoc JavadocVariable Missing a Javadoc comment. 77
 Error naming StaticVariableName Name 'MAPPER' must match pattern '^[a-z][a-zA-Z0-9]*$'. 77
 Error javadoc JavadocVariable Missing a Javadoc comment. 79
 Error javadoc JavadocMethod Missing a Javadoc comment. 81
 Error misc FinalParameters Parameter facebookConfiguration should be final. 81
 Error design DesignForExtension Class 'FacebookPageProvider' looks like designed for extension (can be subclassed), but the method 'getQueue' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageProvider' final or making the method 'getQueue' static/final/abstract/empty, or adding allowed annotation for the method. 85
 Error javadoc JavadocMethod Missing a Javadoc comment. 85
 Error design DesignForExtension Class 'FacebookPageProvider' looks like designed for extension (can be subclassed), but the method 'getDataCollector' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageProvider' final or making the method 'getDataCollector' static/final/abstract/empty, or adding allowed annotation for the method. 90
 Error misc FinalParameters Parameter args should be final. 100
 Error sizes LineLength Line is longer than 80 characters (found 115). 110
 Error sizes LineLength Line is longer than 80 characters (found 98). 114
 Error sizes LineLength Line is longer than 80 characters (found 134). 115
 Error sizes LineLength Line is longer than 80 characters (found 101). 118
 Error sizes LineLength Line is longer than 80 characters (found 111). 122
 Error whitespace ParenPad '(' is followed by whitespace. 133

org/apache/streams/facebook/provider/pagefeed/FacebookPageFeedDataCollector.java

Severity Category Rule Message Line
 Error javadoc JavadocPackage Missing package-info.java file.
 Error sizes LineLength Line is longer than 80 characters (found 100). 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 44
 Error javadoc JavadocVariable Missing a Javadoc comment. 45
 Error javadoc JavadocVariable Missing a Javadoc comment. 46
 Error javadoc JavadocVariable Missing a Javadoc comment. 47
 Error sizes LineLength Line is longer than 80 characters (found 112). 49
 Error javadoc JavadocMethod Missing a Javadoc comment. 49
 Error misc FinalParameters Parameter queue should be final. 49
 Error misc FinalParameters Parameter configuration should be final. 49
 Error design DesignForExtension Class 'FacebookPageFeedDataCollector' looks like designed for extension (can be subclassed), but the method 'getData' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageFeedDataCollector' final or making the method 'getData' static/final/abstract/empty, or adding allowed annotation for the method. 53
 Error misc FinalParameters Parameter id should be final. 54
 Error sizes LineLength Line is longer than 80 characters (found 137). 65
 Error sizes LineLength Line is longer than 80 characters (found 111). 68
 Error sizes LineLength Line is longer than 80 characters (found 135). 69
 Error sizes LineLength Line is longer than 80 characters (found 110). 70
 Error sizes LineLength Line is longer than 80 characters (found 135). 71
 Error sizes LineLength Line is longer than 80 characters (found 135). 73
 Error sizes LineLength Line is longer than 80 characters (found 107). 76
 Error javadoc JavadocMethod Missing a Javadoc comment. 94
 Error misc FinalParameters Parameter paging should be final. 94
 Error javadoc JavadocMethod Missing a Javadoc comment. 98
 Error misc FinalParameters Parameter pageId should be final. 98
 Error sizes LineLength Line is longer than 80 characters (found 97). 103
 Error sizes LineLength Line is longer than 80 characters (found 92). 109
 Error misc FinalParameters Parameter pageId should be final. 109
 Error misc FinalParameters Parameter paging should be final. 109
 Error sizes LineLength Line is longer than 80 characters (found 123). 123
 Error sizes LineLength Line is longer than 80 characters (found 171). 124
 Error coding MagicNumber '17' is a magic number. 129
 Error coding MagicNumber '4' is a magic number. 129
 Error coding MagicNumber '341' is a magic number. 129
 Error sizes LineLength Line is longer than 80 characters (found 82). 134

org/apache/streams/facebook/provider/pagefeed/FacebookPageFeedProvider.java

Severity Category Rule Message Line
 Error javadoc JavadocVariable Missing a Javadoc comment. 52
 Error sizes LineLength Line is longer than 80 characters (found 91). 54
 Error javadoc JavadocVariable Missing a Javadoc comment. 54
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error naming StaticVariableName Name 'MAPPER' must match pattern '^[a-z][a-zA-Z0-9]*$'. 56
 Error javadoc JavadocMethod Missing a Javadoc comment. 58
 Error javadoc JavadocMethod Missing a Javadoc comment. 62
 Error misc FinalParameters Parameter config should be final. 62
 Error design DesignForExtension Class 'FacebookPageFeedProvider' looks like designed for extension (can be subclassed), but the method 'getDataCollector' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookPageFeedProvider' final or making the method 'getDataCollector' static/final/abstract/empty, or adding allowed annotation for the method. 66
 Error misc FinalParameters Parameter args should be final. 76
 Error sizes LineLength Line is longer than 80 characters (found 115). 86
 Error sizes LineLength Line is longer than 80 characters (found 98). 90
 Error sizes LineLength Line is longer than 80 characters (found 134). 91
 Error sizes LineLength Line is longer than 80 characters (found 101). 94
 Error sizes LineLength Line is longer than 80 characters (found 111). 98
 Error whitespace ParenPad '(' is followed by whitespace. 109

org/apache/streams/facebook/serializer/FacebookActivityUtil.java

Severity Category Rule Message Line
 Error misc NewlineAtEndOfFile File does not end with a newline.
 Error javadoc JavadocPackage Missing package-info.java file.
 Error design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 55
 Error sizes LineLength Line is longer than 80 characters (found 91). 56
 Error javadoc JavadocVariable Missing a Javadoc comment. 56
 Error sizes LineLength Line is longer than 80 characters (found 87). 61
 Error sizes LineLength Line is longer than 80 characters (found 102). 64
 Error misc FinalParameters Parameter page should be final. 64
 Error misc FinalParameters Parameter activity should be final. 64
 Error javadoc JavadocMethod Expected @throws tag for 'ActivitySerializerException'. 64
 Error sizes LineLength Line is longer than 80 characters (found 102). 76
 Error misc FinalParameters Parameter post should be final. 76
 Error misc FinalParameters Parameter activity should be final. 76
 Error javadoc JavadocMethod Expected @throws tag for 'ActivitySerializerException'. 76
 Error misc FinalParameters Parameter post should be final. 101
 Error javadoc JavadocMethod Expected @param tag for 'post'. 101
 Error sizes LineLength Line is longer than 80 characters (found 108). 119
 Error misc FinalParameters Parameter page should be final. 142
 Error misc FinalParameters Parameter post should be final. 175
 Error sizes LineLength Line is longer than 80 characters (found 81). 187
 Error misc FinalParameters Parameter actor should be final. 198
 Error misc FinalParameters Parameter page should be final. 198
 Error javadoc JavadocStyle First sentence should end with a period. 214
 Error misc FinalParameters Parameter activity should be final. 220
 Error javadoc JavadocMethod Expected @param tag for 'activity'. 220
 Error misc FinalParameters Parameter post should be final. 220
 Error javadoc JavadocMethod Expected @param tag for 'post'. 220
 Error sizes LineLength Line is longer than 80 characters (found 96). 222
 Error whitespace WhitespaceAround 'if' is not followed by whitespace. 224
 Error whitespace WhitespaceAround 'if' is not followed by whitespace. 228
 Error whitespace WhitespaceAround 'if' is not followed by whitespace. 233
 Error sizes LineLength Line is longer than 80 characters (found 86). 235
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 235
 Error whitespace WhitespaceAround 'if' is not followed by whitespace. 239
 Error whitespace WhitespaceAround 'for' is not followed by whitespace. 244
 Error sizes LineLength Line is longer than 80 characters (found 89). 251
 Error whitespace WhitespaceAfter ',' is not followed by whitespace. 251
 Error whitespace WhitespaceAfter 'typecast' is not followed by whitespace. 251
 Error whitespace WhitespaceAround 'if' is not followed by whitespace. 255
 Error whitespace WhitespaceAround 'if' is not followed by whitespace. 257
 Error sizes LineLength Line is longer than 80 characters (found 113). 258
 Error javadoc JavadocStyle First sentence should end with a period. 265
 Error misc FinalParameters Parameter idparts should be final. 270
 Error sizes LineLength Line is longer than 80 characters (found 124). 272

org/apache/streams/facebook/serializer/FacebookStreamsPostSerializer.java

Severity Category Rule Message Line
 Error javadoc JavadocStyle First sentence should end with a period. 31
 Error sizes LineLength Line is longer than 80 characters (found 101). 32
 Error javadoc JavadocVariable Missing a Javadoc comment. 36
 Error javadoc JavadocVariable Missing a Javadoc comment. 37
 Error javadoc JavadocVariable Missing a Javadoc comment. 38
 Error design DesignForExtension Class 'FacebookStreamsPostSerializer' looks like designed for extension (can be subclassed), but the method 'serializationFormat' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookStreamsPostSerializer' final or making the method 'serializationFormat' static/final/abstract/empty, or adding allowed annotation for the method. 40
 Error design DesignForExtension Class 'FacebookStreamsPostSerializer' looks like designed for extension (can be subclassed), but the method 'serialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookStreamsPostSerializer' final or making the method 'serialize' static/final/abstract/empty, or adding allowed annotation for the method. 45
 Error sizes LineLength Line is longer than 80 characters (found 83). 46
 Error misc FinalParameters Parameter deserialized should be final. 46
 Error design DesignForExtension Class 'FacebookStreamsPostSerializer' looks like designed for extension (can be subclassed), but the method 'deserialize' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookStreamsPostSerializer' final or making the method 'deserialize' static/final/abstract/empty, or adding allowed annotation for the method. 50
 Error misc FinalParameters Parameter post should be final. 51
 Error design DesignForExtension Class 'FacebookStreamsPostSerializer' looks like designed for extension (can be subclassed), but the method 'deserializeAll' does not have javadoc that explains how to do that safely. If class is not designed for extension consider making the class 'FacebookStreamsPostSerializer' final or making the method 'deserializeAll' static/final/abstract/empty, or adding allowed annotation for the method. 60
 Error misc FinalParameters Parameter serializedList should be final. 61
 Error misc FinalParameters Parameter post should be final. 70
 Error misc FinalParameters Parameter post should be final. 82