-
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.
CIV-16297 Hearing date for order after hearing template (#6026)
* CIV-16297 Hearing date for order after hearing template * format hearing date for template * pointing back to master * adding new camunda image path --------- Co-authored-by: vasudevganesanhmcts <100689363+vasudevganesanhmcts@users.noreply.github.com> Co-authored-by: Madhan Mahadevan <madhan.mahadevan@hmcts.net>
- Loading branch information
1 parent
30bb5e0
commit 32e8a72
Showing
9 changed files
with
288 additions
and
9 deletions.
There are no files selected for viewing
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
21 changes: 21 additions & 0 deletions
21
src/main/java/uk/gov/hmcts/reform/civil/model/finalorders/OrderAfterHearingDate.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,21 @@ | ||
package uk.gov.hmcts.reform.civil.model.finalorders; | ||
|
||
import lombok.AllArgsConstructor; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.NoArgsConstructor; | ||
|
||
import java.time.LocalDate; | ||
|
||
@Data | ||
@Builder(toBuilder = true) | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
public class OrderAfterHearingDate { | ||
|
||
private OrderAfterHearingDateType dateType; | ||
private LocalDate date; | ||
private LocalDate fromDate; | ||
private LocalDate toDate; | ||
private String bespokeDates; | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/uk/gov/hmcts/reform/civil/model/finalorders/OrderAfterHearingDateType.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,7 @@ | ||
package uk.gov.hmcts.reform.civil.model.finalorders; | ||
|
||
public enum OrderAfterHearingDateType { | ||
SINGLE_DATE, | ||
DATE_RANGE, | ||
BESPOKE_RANGE | ||
} |
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
Oops, something went wrong.