Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Legger til tre manglende enumer fra domain som brukes i bidrag-sak #271

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package no.nav.bidrag.domene.enums.sak

enum class Fogdårsak(
val beskrivelse: String,
val gyldig: Boolean,
val tilgangstype: Tilgangstype,
val tilgangsrolle: String,
) {
ADRE("Adresseendring", true, Tilgangstype.EIER, "Batch"),
AUTO("Bidragsevnesprekk", true, Tilgangstype.MIDL, "Alle"),
BRUS("Brukerstøtte", false, Tilgangstype.MIDL, "Ingen"),
DISK("Diskresjon", true, Tilgangstype.EIER, "Batch"),
EIER("Annet", true, Tilgangstype.EIER, "Alle"),
EIUT("Utlandssak", true, Tilgangstype.EIER, "Alle"),
ERST("Erstatning", true, Tilgangstype.MIDL, "Alle"),
KLIN("Klageinstans", true, Tilgangstype.MIDL, "Alle"),
MAAN("Manuell annet", true, Tilgangstype.MIDL, "Alle"),
MAKO("Ko-fogd", true, Tilgangstype.MIDL, "Alle"),
MAUT("Utlandssak", true, Tilgangstype.MIDL, "Alle"),
MOT("Motregning", true, Tilgangstype.MIDL, "Alle"),
OORG("Omorganisering", true, Tilgangstype.EIER, "Batch"),
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package no.nav.bidrag.domene.enums.sak

enum class Tilgangstype(val beskrivelse: String) {
EIER("Eierfogd"),
MIDL("Midlertidig autorisasjon"),
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package no.nav.bidrag.domene.enums.sak

enum class UkjentPart(val beskrivelse: String) {
UK("Ukjent"),
}
Loading