Fixing issue due to changes in serialVersionUID after adding an additional field to Operation DTO. As a fix, serializationUID of the earlier revision of the class was included in the current code

This commit is contained in:
Ace 2018-10-10 18:37:37 +05:30
parent 1f2f85d691
commit e487ef4627

View File

@ -23,6 +23,8 @@ import java.util.Properties;
public class Operation implements Serializable { public class Operation implements Serializable {
private static final long serialVersionUID = -353614864628915060L;
public enum Type { public enum Type {
CONFIG, MESSAGE, INFO, COMMAND, PROFILE , POLICY CONFIG, MESSAGE, INFO, COMMAND, PROFILE , POLICY
} }