Skip to content

Commit

Permalink
Justert litt på feilrapportering fra bidrag-grunnlag (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsOttoHaugen authored Jan 31, 2024
1 parent 31a4799 commit 94d8d0b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ package no.nav.bidrag.domene.enums.grunnlag
import io.swagger.v3.oas.annotations.media.Schema

/**
* Typer grunnlag som kan innhentes av tjenesten bidrag-grunnlag.
* Brukes for å spesifisere hvilke grunnlag man ønsker at skal innhentes for en grunnlagspakke.
* Må ikke forveksles med GrunnlagType.
* Brukes for å spesifisere hvilke grunnlag man ønsker at skal innhentes av tjenesten bidrag-grunnlag.
* Må ikke forveksles med Grunnlagstype.
*/
@Schema(enumAsRef = true)
enum class GrunnlagRequestType {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
package no.nav.bidrag.domene.enums.grunnlag

enum class HentGrunnlagFeiltype {
TJENESTE_UTILGJENGELIG, // 503
FEIL_I_TJENESTE, // 5xx
FEIL_I_REQUEST, // 4xx
TEKNISK_FEIL,
FUNKSJONELL_FEIL,
UKJENT_FEIL,
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,15 @@ package no.nav.bidrag.transport.behandling.grunnlag.response

import io.swagger.v3.oas.annotations.media.Schema
import no.nav.bidrag.domene.enums.grunnlag.GrunnlagRequestType
import org.springframework.http.HttpStatusCode
import no.nav.bidrag.domene.enums.grunnlag.HentGrunnlagFeiltype
import java.time.LocalDate

data class FeilrapporteringDto(
@Schema(description = "Type grunnlag")
val grunnlagstype: GrunnlagRequestType,
@Schema(description = "Id til personen grunnlaget er forsøkt hentet for")
val personId: String?,
@Schema(description = "Periode fra-dato")
val periodeFra: LocalDate?,
@Schema(description = "Periode til-dato")
val periodeTil: LocalDate?,
@Schema(description = "Http statuskode")
val feilkode: HttpStatusCode?,
@Schema(description = "Feilmelding")
val feiltype: HentGrunnlagFeiltype,
val feilmelding: String?,
)
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,5 @@ data class HentGrunnlagDto(
val arbeidsforholdListe: List<ArbeidsforholdGrunnlagDto>,
@Schema(description = "Liste over evt. feil rapportert under henting av grunnlag")
val feilrapporteringListe: List<FeilrapporteringDto>,
@Schema(description = "Hentet tidspunkt")
val hentetTidspunkt: LocalDateTime,
)

0 comments on commit 94d8d0b

Please sign in to comment.