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

Fixing serialization issue with ProjectGroup #538

Merged
merged 2 commits into from
Aug 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ workflows:
context : org-global
filters:
branches:
only: [dev, dev-sts]
only: [dev, dev-sts, 'feature/serialization_error_for_ProjectGroup']
- build-qa:
context : org-global
filters:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,20 @@
* <p>
* Changes related to v5-groups-api
* </p>
*
* @author dushyantb
* @version 1.1
* Version 1.2 (Fixing serilization error for ProjectGroup):
* <ul>
* <li>Added serlization version id to avoid marshlling errors</li>
* </ul>
* @author dushyantb, vikasrohit
* @version 1.2
*/

public class ProjectGroup implements Serializable {
/**
* Unique seriliazation version id
*/
private static final long serialVersionUID = 652485342267757690L;

/**
* Represents group id
*/
Expand Down