Skip to content

Commit

Permalink
Legger til faktaaggregat i brev-dto
Browse files Browse the repository at this point in the history
  • Loading branch information
espenjv committed Aug 8, 2024
1 parent 94fb4ef commit 15868ec
Showing 1 changed file with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import jakarta.validation.Valid;
import jakarta.validation.constraints.NotNull;
import no.nav.folketrygdloven.kalkulus.response.v1.beregningsgrunnlag.detaljert.FaktaAggregatDto;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
Expand All @@ -27,7 +28,11 @@ public class BeregningsgrunnlagGrunnlagDto {
@Valid
private BeregningsgrunnlagDto beregningsgrunnlag;

@JsonProperty(value = "erForlengelse")
@JsonProperty(value = "faktaAvklaringer")
@Valid
private FaktaAggregatDto faktaAvklaringer;

@JsonProperty(value = "erForlengelse")
@Valid
@NotNull
private Boolean erForlengelse;
Expand All @@ -37,11 +42,12 @@ public BeregningsgrunnlagGrunnlagDto() {
}

public BeregningsgrunnlagGrunnlagDto(UUID eksternReferanse,
BeregningsgrunnlagDto beregningsgrunnlag,
BeregningsgrunnlagDto beregningsgrunnlag, FaktaAggregatDto faktaAvklaringer,
Boolean erForlengelse) {
this.eksternReferanse = eksternReferanse;
this.beregningsgrunnlag = beregningsgrunnlag;
this.erForlengelse = erForlengelse;
this.faktaAvklaringer = faktaAvklaringer;
this.erForlengelse = erForlengelse;
}

public UUID getEksternReferanse() {
Expand All @@ -55,4 +61,8 @@ public BeregningsgrunnlagDto getBeregningsgrunnlag() {
public Boolean getErForlengelse() {
return erForlengelse;
}

public FaktaAggregatDto getFaktaAvklaringer() {
return faktaAvklaringer;
}
}

0 comments on commit 15868ec

Please sign in to comment.