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

Commit 6d23464

Browse files
authored
Merge pull request #538 from appirio-tech/feature/serialization_error_for_ProjectGroup
Fixing serialization issue with ProjectGroup
2 parents 266e3ed + 9fa3a8c commit 6d23464

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ workflows:
9090
context : org-global
9191
filters:
9292
branches:
93-
only: [dev, dev-sts]
93+
only: [dev, dev-sts, 'feature/serialization_error_for_ProjectGroup']
9494
- build-qa:
9595
context : org-global
9696
filters:

components/project_management/src/java/main/com/topcoder/management/project/ProjectGroup.java

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,20 @@
2222
* <p>
2323
* Changes related to v5-groups-api
2424
* </p>
25-
*
26-
* @author dushyantb
27-
* @version 1.1
25+
* Version 1.2 (Fixing serilization error for ProjectGroup):
26+
* <ul>
27+
* <li>Added serlization version id to avoid marshlling errors</li>
28+
* </ul>
29+
* @author dushyantb, vikasrohit
30+
* @version 1.2
2831
*/
2932

3033
public class ProjectGroup implements Serializable {
34+
/**
35+
* Unique seriliazation version id
36+
*/
37+
private static final long serialVersionUID = 652485342267757690L;
38+
3139
/**
3240
* Represents group id
3341
*/

0 commit comments

Comments
 (0)