-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TFP-1106 utvide fpfordel fpsak (#196)
- Loading branch information
Showing
2 changed files
with
50 additions
and
7 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
49 changes: 49 additions & 0 deletions
49
...fordel/src/main/java/no/nav/foreldrepenger/kontrakter/fordel/JournalpostVurderingDto.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,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; | ||
} | ||
} |