Skip to content
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ public class DefendantResponses {
@CCD
private VerticalYesNo defendantNameConfirmation;

@CCD
private VerticalYesNo correspondenceAddressConfirmation;

@CCD
private YesNoNotSure landlordRegistered;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public class DefendantResponseEntity {

@Enumerated(EnumType.STRING)
@JdbcTypeCode(SqlTypes.NAMED_ENUM)
private YesOrNo correspondenceAddressConfirmation;
private VerticalYesNo correspondenceAddressConfirmation;

@Enumerated(EnumType.STRING)
@JdbcTypeCode(SqlTypes.NAMED_ENUM)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ private DefendantResponseEntity buildDefendantResponseEntity(ClaimEntity claimRe
.freeLegalAdvice(responses.getFreeLegalAdvice())
.possessionNoticeReceived(responses.getNoticeReceived())
.defendantNameConfirmation(responses.getDefendantNameConfirmation())
.correspondenceAddressConfirmation(responses.getCorrespondenceAddressConfirmation())
.landlordRegistered(responses.getLandlordRegistered())
.writtenTerms(responses.getWrittenTerms())
.tenancyStartDateConfirmation(tenancyStartDateConfirmation)
Expand Down
Loading