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

Bruk string heller enn enum for å slippe at jsonValue automatisk gir … #6807

Merged
merged 8 commits into from
Oct 24, 2024

Conversation

johannbm
Copy link
Contributor

…kode

@johannbm johannbm requested a review from a team as a code owner October 23, 2024 07:20
Copy link
Collaborator

@jolarsen jolarsen left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dere kan jo vurdere å endre Enum.name til å bli lik Enum.kode
Da blir det enklere å kvitte seg med kode - som er planen på sikt.

@jolarsen jolarsen requested a review from palfi October 23, 2024 07:56
@palfi
Copy link
Collaborator

palfi commented Oct 23, 2024

Ev lag egen enum og legg den lokalt i FpSakInntektsmeldingDto med en mapping

@johannbm
Copy link
Contributor Author

Jeg kjenner ikke historikken her godt nok til å forstå hvorfor man har flere permutasjoner av samme Enum heller, så her gjør jeg det dere tenker er best.

Først vil jeg fikse feilen, og ikke gjøre videre refaktoreringer som kan gi bugs.

Vet ikke om jeg har lyst til å innføre enda en enum i FpSakInntektsmeldingDto (som er lik, men med annen verdi som mappes til JsonValue).

Enum.name til å bli lik Enum.kode (basicly kvitte seg med kode) høres jo fristen ut, men kjenner ikke scope på hvordan det kan være breaking

case YRKEBIL_TJENESTLIGBEHOV_KILOMETER -> FpSakInntektsmeldingDto.NaturalytelseType.YRKEBIL_TJENESTLIGBEHOV_KILOMETER;
case YRKEBIL_TJENESTLIGBEHOV_LISTEPRIS -> FpSakInntektsmeldingDto.NaturalytelseType.YRKEBIL_TJENESTLIGBEHOV_LISTEPRIS;
case INNBETALING_TIL_UTENLANDSK_PENSJONSORDNING -> FpSakInntektsmeldingDto.NaturalytelseType.INNBETALING_TIL_UTENLANDSK_PENSJONSORDNING;
default -> throw new IllegalStateException("Kunne ikke mappe NaturalytelseType til FpSakInntektsmeldingDto.NaturalytelseType: " + naturalytelseType);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tror det er best å ikke legge en default, men bruke UKJENT -> throw new IllegalStateException("Kunne ikke mappe NaturalytelseType til FpSakInntektsmeldingDto.NaturalytelseType: " + naturalytelseType);

Da vil man få kompileringsfeil istf runtimeexception hvis det senere kommer nye typer naturytelser

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ellers ok!

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ja, godt poeng!

@johannbm johannbm merged commit c392d13 into master Oct 24, 2024
2 checks passed
@johannbm johannbm deleted the bruk-string-i-dto-heller-enn-enum branch October 24, 2024 08:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants