Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 4163660

Browse files
committed
add serialVersionUID
1 parent 7dd5c83 commit 4163660

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

components/resource_management/src/java/main/com/topcoder/management/resource/Notification.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@
2424
*/
2525
public class Notification extends AuditableResourceStructure {
2626

27+
/**
28+
* Default serial version id.
29+
*/
30+
private static final long serialVersionUID = 1L;
31+
2732
/**
2833
* <p>
2934
* The identifier of the project that the notification applies to.

components/resource_management/src/java/main/com/topcoder/management/resource/NotificationType.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@
2222
*/
2323
public class NotificationType extends AuditableResourceStructure {
2424

25+
/**
26+
* Default serial version id.
27+
*/
28+
private static final long serialVersionUID = 1L;
29+
2530

2631
/**
2732
* <p>

components/resource_management/src/java/main/com/topcoder/management/resource/ResourceRole.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@
4343
*/
4444
public class ResourceRole extends AuditableResourceStructure {
4545

46+
/**
47+
* Default serial version id.
48+
*/
49+
private static final long serialVersionUID = 1L;
50+
4651
/**
4752
* <p>
4853
* The value that the id field will have (and that the getId

0 commit comments

Comments
 (0)