diff --git a/bidrag-domene/src/main/kotlin/no/nav/bidrag/domene/enums/grunnlag/GrunnlagRequestType.kt b/bidrag-domene/src/main/kotlin/no/nav/bidrag/domene/enums/grunnlag/GrunnlagRequestType.kt index 7ec3841..8419c61 100644 --- a/bidrag-domene/src/main/kotlin/no/nav/bidrag/domene/enums/grunnlag/GrunnlagRequestType.kt +++ b/bidrag-domene/src/main/kotlin/no/nav/bidrag/domene/enums/grunnlag/GrunnlagRequestType.kt @@ -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 { diff --git a/bidrag-domene/src/main/kotlin/no/nav/bidrag/domene/enums/grunnlag/HentGrunnlagFeiltype.kt b/bidrag-domene/src/main/kotlin/no/nav/bidrag/domene/enums/grunnlag/HentGrunnlagFeiltype.kt index 3e1a608..f5ff85f 100644 --- a/bidrag-domene/src/main/kotlin/no/nav/bidrag/domene/enums/grunnlag/HentGrunnlagFeiltype.kt +++ b/bidrag-domene/src/main/kotlin/no/nav/bidrag/domene/enums/grunnlag/HentGrunnlagFeiltype.kt @@ -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, } diff --git a/bidrag-transport/src/main/kotlin/no/nav/bidrag/transport/behandling/grunnlag/response/FeilrapporteringDto.kt b/bidrag-transport/src/main/kotlin/no/nav/bidrag/transport/behandling/grunnlag/response/FeilrapporteringDto.kt index 0df8af3..16562fc 100644 --- a/bidrag-transport/src/main/kotlin/no/nav/bidrag/transport/behandling/grunnlag/response/FeilrapporteringDto.kt +++ b/bidrag-transport/src/main/kotlin/no/nav/bidrag/transport/behandling/grunnlag/response/FeilrapporteringDto.kt @@ -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?, ) diff --git a/bidrag-transport/src/main/kotlin/no/nav/bidrag/transport/behandling/grunnlag/response/HentGrunnlagDto.kt b/bidrag-transport/src/main/kotlin/no/nav/bidrag/transport/behandling/grunnlag/response/HentGrunnlagDto.kt index b0453d5..11c5228 100644 --- a/bidrag-transport/src/main/kotlin/no/nav/bidrag/transport/behandling/grunnlag/response/HentGrunnlagDto.kt +++ b/bidrag-transport/src/main/kotlin/no/nav/bidrag/transport/behandling/grunnlag/response/HentGrunnlagDto.kt @@ -31,6 +31,5 @@ data class HentGrunnlagDto( val arbeidsforholdListe: List, @Schema(description = "Liste over evt. feil rapportert under henting av grunnlag") val feilrapporteringListe: List, - @Schema(description = "Hentet tidspunkt") val hentetTidspunkt: LocalDateTime, )