Skip to content

Commit

Permalink
TFP-1106 utvide fpfordel fpsak (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
jolarsen authored Apr 30, 2020
1 parent a0fac90 commit bbe5ceb
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,9 @@ public class FagsakInfomasjonDto {
@Pattern(regexp = "^[a-zA-Z0-9_-æøåÆØÅ]*$")
private String behandlingstemaOffisiellKode;

private Boolean harÅpenSvpBehandlingMedSøknad;

public FagsakInfomasjonDto(String aktørId, String behandlingstemaOffisiellKode, Boolean harÅpenSvpBehandlingMedSøknad) {
public FagsakInfomasjonDto(String aktørId, String behandlingstemaOffisiellKode) {
this.aktørId = aktørId;
this.behandlingstemaOffisiellKode = behandlingstemaOffisiellKode;
this.harÅpenSvpBehandlingMedSøknad = harÅpenSvpBehandlingMedSøknad;
}

public FagsakInfomasjonDto() { // For Jackson
Expand All @@ -34,7 +31,4 @@ public String getBehandlingstemaOffisiellKode() {
return behandlingstemaOffisiellKode;
}

public Boolean getHarÅpenSvpBehandlingMedSøknad() {
return harÅpenSvpBehandlingMedSøknad;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
package no.nav.foreldrepenger.kontrakter.fordel;

import javax.validation.constraints.Pattern;
import javax.validation.constraints.Size;

public class JournalpostVurderingDto {

@Size(max = 8)
@Pattern(regexp = "^[a-zA-ZæøåÆØÅ_\\-0-9]*$")
private String behandlingstemaOffisiellKode;

private Boolean erFørstegangssøknad;
private Boolean erInntektsmelding;

public JournalpostVurderingDto(String behandlingstemaOffisiellKode,
Boolean erFørstegangssøknad,
Boolean erInntektsmelding) {
this.behandlingstemaOffisiellKode = behandlingstemaOffisiellKode;
this.erFørstegangssøknad = erFørstegangssøknad;
this.erInntektsmelding = erInntektsmelding;
}

public JournalpostVurderingDto() { // For Jackson
}

public String getBehandlingstemaOffisiellKode() {
return behandlingstemaOffisiellKode;
}

public void setBehandlingstemaOffisiellKode(String behandlingstemaOffisiellKode) {
this.behandlingstemaOffisiellKode = behandlingstemaOffisiellKode;
}

public Boolean getErFørstegangssøknad() {
return erFørstegangssøknad;
}

public void setErFørstegangssøknad(Boolean erFørstegangssøknad) {
this.erFørstegangssøknad = erFørstegangssøknad;
}

public Boolean getErInntektsmelding() {
return erInntektsmelding;
}

public void setErInntektsmelding(Boolean erInntektsmelding) {
this.erInntektsmelding = erInntektsmelding;
}
}

0 comments on commit bbe5ceb

Please sign in to comment.