Correctness - Class defines a computed serialVersionUID that doesn't equate to the calculated value
This serializable class defines a serialVersionUID that appears to be a computed value, however the value does not match the computed value, and thus losses it's value as version indicator. Either create a custom value like 1, 2, 3, 4.. etc, or recompute the serialVersionUID using your IDE.
Probably referring to the field:
private static final long serialVersionUID = 18234907734L;
Why 18234907734L isn't valid?