Skip to content

Commit

Permalink
Merge pull request #4 from hmcts/feature/VIH-4510-update-casegroup-names
Browse files Browse the repository at this point in the history
update CaseRoleGroup enum values
  • Loading branch information
npoxon authored May 30, 2019
2 parents bee0df2 + 70d06f1 commit f052938
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ public class ParticipantDto

public enum CaseRoleGroup
{
PartyGroup0 = 0,
PartyGroup1 = 1,
PartyGroup2 = 2,
PartyGroup3 = 3,
Judge = 0,
Claimant = 1,
Defendant = 2,
Applicant = 3,
Respondent = 4
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void should_handle_hearing_ready_for_video_integration_event()
'display_name':'DisplayName1',
'hearing_role':'Claimant LIP',
'user_role':'Individual',
'case_group_type':'partyGroup1',
'case_group_type':'Claimant',
'representee':''
},
{
Expand All @@ -43,7 +43,7 @@ public void should_handle_hearing_ready_for_video_integration_event()
'display_name':'DisplayName2',
'hearing_role':'Solicitor',
'user_role':'Representative',
'case_group_type':'partyGroup1',
'case_group_type':'Claimant',
'representee':'Representee2'
},
{
Expand All @@ -53,7 +53,7 @@ public void should_handle_hearing_ready_for_video_integration_event()
'display_name':'DisplayName5',
'hearing_role':'Judge',
'user_role':'Judge',
'case_group_type':'partyGroup0',
'case_group_type':'Judge',
'representee':''
}
],
Expand Down

0 comments on commit f052938

Please sign in to comment.