-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into CIV-15576
- Loading branch information
Showing
118 changed files
with
4,734 additions
and
2,059 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 0 additions & 35 deletions
35
src/main/java/uk/gov/hmcts/reform/civil/enums/caseprogression/EvidenceUploadFiles.java
This file was deleted.
Oops, something went wrong.
42 changes: 42 additions & 0 deletions
42
src/main/java/uk/gov/hmcts/reform/civil/enums/caseprogression/EvidenceUploadType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package uk.gov.hmcts.reform.civil.enums.caseprogression; | ||
|
||
public enum EvidenceUploadType { | ||
|
||
DISCLOSURE_LIST("Disclosure list", "%s - Disclosure list"), | ||
DOCUMENTS_FOR_DISCLOSURE("Document for disclosure", "%s - Documents for disclosure"), | ||
EXPERT_REPORT("Experts report", "%s - Expert's report"), | ||
PRE_TRIAL_SUMMARY("Pre Trial Summary", "%s - Case Summary"), | ||
JOINT_STATEMENT("Joint report", "%s - Joint Statement of Experts / Single Joint Expert Report"), | ||
QUESTIONS_FOR_EXPERTS("Expert Questions", "%s - Questions for other party's expert or joint experts"), | ||
ANSWERS_FOR_EXPERTS("Expert Answers", "%s - Answer to questions asked"), | ||
CASE_SUMMARY("Case Summary", "Trial documents"), | ||
SKELETON_ARGUMENT("Skeleton Argument", "Trial documents"), | ||
AUTHORITIES("Authorities", "%s - Authorities"), | ||
COSTS("Costs", "%s - Costs"), | ||
TRIAL_CORRESPONDENCE("Documentary Evidence", "%s - Documentary evidence for trial"), | ||
TRIAL_SKELETON("Trial Skeleton", "%s - Skeleton argument"), | ||
DOCUMENTARY("Documentary", "Trial documents"), | ||
WITNESS_STATEMENT("Witness Statement of", "%s - Witness statement"), | ||
WITNESS_SUMMARY("Witness Summary of", "%s - Witness summary"), | ||
WITNESS_HEARSAY("Hearsay evidence", "%s - Notice of the intention to rely on hearsay evidence"), | ||
WITNESS_REFERRED(" referred to in the statement of ", "%s - Documents referred to in the statement"), | ||
NOTICE_OF_INTENTION("Notice of Intention", "Witness evidence"), | ||
DOCUMENTS_REFERRED("Documents Referred", "Witness evidence"), | ||
BUNDLE_EVIDENCE("Bundle evidence", "%s - Bundle"); | ||
|
||
String documentTypeDisplayName; | ||
String notifictationTextRegEx; | ||
|
||
EvidenceUploadType(String documentTypeDisplayName, String notifictationTextRegEx) { | ||
this.documentTypeDisplayName = documentTypeDisplayName; | ||
this.notifictationTextRegEx = notifictationTextRegEx; | ||
} | ||
|
||
public String getNotifictationTextRegEx() { | ||
return notifictationTextRegEx; | ||
} | ||
|
||
public String getDocumentTypeDisplayName() { | ||
return documentTypeDisplayName; | ||
} | ||
} |
Oops, something went wrong.