Skip to content

Commit

Permalink
TFP-5947, TFP-5964: Legger til vurderårsak BEGRUNNELSE og SAKSFLYT fo…
Browse files Browse the repository at this point in the history
…r årsaker som kan sendes tilbake i retur (#7037)
  • Loading branch information
espenwaaga authored Jan 29, 2025
1 parent 3d5fd1e commit 0e63a81
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,26 +1,28 @@
package no.nav.foreldrepenger.behandlingslager.behandling.aksjonspunkt;

import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;

import com.fasterxml.jackson.annotation.JsonValue;
import jakarta.persistence.AttributeConverter;
import jakarta.persistence.Converter;

import com.fasterxml.jackson.annotation.JsonValue;

import no.nav.foreldrepenger.behandlingslager.kodeverk.Kodeverdi;

import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;

public enum VurderÅrsak implements Kodeverdi {

FEIL_FAKTA("FEIL_FAKTA", "Fakta"),
FEIL_LOV("FEIL_LOV", "Regel-/lovanvendelse"),
FEIL_REGEL("FEIL_REGEL", "Feil regelforståelse"), // UTGÅTT, beholdes pga historikk
SKJØNN("SKJØNN", "Skjønn"),
UTREDNING("UTREDNING", "Utredning"),
ANNET("ANNET", "Annet"),
SAKSFLYT("SAKSFLYT", "Saksflyt"),
BEGRUNNELSE("BEGRUNNELSE", "Begrunnelse"),
UDEFINERT("-", "Ikke definert"),

@Deprecated
ANNET("ANNET", "Annet"), // UTGÅTT, beholdes pga historikk
@Deprecated
FEIL_REGEL("FEIL_REGEL", "Feil regelforståelse"), // UTGÅTT, beholdes pga historikk
;

private static final Map<String, VurderÅrsak> KODER = new LinkedHashMap<>();
Expand Down

0 comments on commit 0e63a81

Please sign in to comment.