-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tar i bruk ny versjon av BarnetrygdSøknad og KontantstøtteSøknad (#1150)
* Tar i bruk ny versjon av BarnetrygdSøknad og KontantstøtteSøknad * Forenkler metoden hentVersjonertSøknad for barnetrygd og kontantstøtte * Tar i bruk ny versjon av baks-dokgen og bruker kontraktVersjon 9 og 5 for henholdsvis barnetrygd og kontantstøtte i tester * ktlint * Sørger for at alle tester relatert til barnetrygd og kontantstøtte søknadene bruker siste versjon (henholdsvis V9 og V5)
- Loading branch information
1 parent
4d3a153
commit f1e6f6f
Showing
27 changed files
with
218 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 8 additions & 3 deletions
11
.../kotlin/no/nav/familie/baks/mottak/søknad/barnetrygd/domene/VersjonertBarnetrygdSøknad.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
package no.nav.familie.baks.mottak.søknad.barnetrygd.domene | ||
|
||
import no.nav.familie.kontrakter.ba.søknad.v8.Søknad as SøknadV8 | ||
import no.nav.familie.kontrakter.ba.søknad.v8.Søknad as BarnetrygdSøknadV8 | ||
import no.nav.familie.kontrakter.ba.søknad.v9.BarnetrygdSøknad as BarnetrygdSøknadV9 | ||
|
||
sealed class VersjonertBarnetrygdSøknad | ||
|
||
data class SøknadV8( | ||
val søknad: SøknadV8, | ||
data class BarnetrygdSøknadV8( | ||
val barnetrygdSøknad: BarnetrygdSøknadV8, | ||
) : VersjonertBarnetrygdSøknad() | ||
|
||
data class BarnetrygdSøknadV9( | ||
val barnetrygdSøknad: BarnetrygdSøknadV9, | ||
) : VersjonertBarnetrygdSøknad() |
Oops, something went wrong.