-
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.
Revert "F!!Endrer format for SedType til å eg. SedType.SEDTYPE_P2000 …
…grunnet samme navn som Sed klassen" This reverts commit d0e21bd.
- Loading branch information
Showing
26 changed files
with
177 additions
and
238 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
package no.nav.eessi.pensjon.eux.model.sed | ||
|
||
import com.fasterxml.jackson.annotation.JsonAlias | ||
import com.fasterxml.jackson.annotation.JsonProperty | ||
import no.nav.eessi.pensjon.eux.model.SedType | ||
|
||
class P2100( | ||
@JsonProperty("sed") | ||
override val type: SedType = SedType.SEDTYPE_P2100, | ||
override val type: SedType = SedType.P2100, | ||
override val nav: Nav? = null, | ||
override val pensjon: Pensjon? | ||
) : SED(type = SedType.SEDTYPE_P2100, nav = nav, pensjon = pensjon) | ||
) : SED(type, nav = nav, pensjon = pensjon) | ||
|
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,12 +1,11 @@ | ||
package no.nav.eessi.pensjon.eux.model.sed | ||
|
||
import com.fasterxml.jackson.annotation.JsonAlias | ||
import com.fasterxml.jackson.annotation.JsonProperty | ||
import no.nav.eessi.pensjon.eux.model.SedType | ||
|
||
class P2200( | ||
@JsonProperty("sed") | ||
override val type: SedType = SedType.SEDTYPE_P2200, | ||
override val type: SedType = SedType.P2200, | ||
override val nav: Nav? = null, | ||
override val pensjon: Pensjon? | ||
) : SED(type, nav = nav, pensjon = pensjon) |
Oops, something went wrong.