Skip to content

Commit

Permalink
add serialVersionUID
Browse files Browse the repository at this point in the history
  • Loading branch information
andyjefferson committed Jun 14, 2014
1 parent b4b234e commit eeb108a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public String getMeetingLocation()
*/
public static class PK implements Serializable
{
private static final long serialVersionUID = 6523985844759937342L;
public Customer.PK customer; // Use same name as field above
public Supplier.PK supplier; // Use same name as field above

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public String toString()

public static class PK implements Serializable
{
private static final long serialVersionUID = 7596143906460627568L;
public long id;

public PK()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ public String toString()

public static class PK implements Serializable
{
private static final long serialVersionUID = -4093751077746226151L;
public long id;

public PK()
Expand Down

0 comments on commit eeb108a

Please sign in to comment.