-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
splitt prosjekt opp i pakkenavn som matcher funksjon
- Loading branch information
Showing
177 changed files
with
900 additions
and
773 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
8 changes: 8 additions & 0 deletions
8
...ghetsrommet-api/src/main/kotlin/no/nav/mulighetsrommet/altinn/db/BedriftRettigheterDbo.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package no.nav.mulighetsrommet.altinn.db | ||
|
||
import no.nav.mulighetsrommet.domain.dto.Organisasjonsnummer | ||
|
||
data class BedriftRettigheterDbo( | ||
val organisasjonsnummer: Organisasjonsnummer, | ||
val rettigheter: List<RettighetDbo>, | ||
) |
11 changes: 11 additions & 0 deletions
11
...ommet-api/src/main/kotlin/no/nav/mulighetsrommet/altinn/db/PersonBedriftRettigheterDbo.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package no.nav.mulighetsrommet.altinn.db | ||
|
||
import no.nav.mulighetsrommet.altinn.model.BedriftRettigheter | ||
import no.nav.mulighetsrommet.domain.dto.NorskIdent | ||
import java.time.LocalDateTime | ||
|
||
data class PersonBedriftRettigheterDbo( | ||
val norskIdent: NorskIdent, | ||
val bedriftRettigheter: List<BedriftRettigheter>, | ||
val expiry: LocalDateTime, | ||
) |
9 changes: 9 additions & 0 deletions
9
mulighetsrommet-api/src/main/kotlin/no/nav/mulighetsrommet/altinn/db/RettighetDbo.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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package no.nav.mulighetsrommet.altinn.db | ||
|
||
import no.nav.mulighetsrommet.altinn.model.AltinnRessurs | ||
import java.time.LocalDateTime | ||
|
||
data class RettighetDbo( | ||
val rettighet: AltinnRessurs, | ||
val expiry: LocalDateTime, | ||
) |
2 changes: 1 addition & 1 deletion
2
...hetsrommet/altinn/models/AltinnRessurs.kt → ...ghetsrommet/altinn/model/AltinnRessurs.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
2 changes: 1 addition & 1 deletion
2
...ommet/altinn/models/BedriftRettigheter.kt → ...rommet/altinn/model/BedriftRettigheter.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
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
6 changes: 3 additions & 3 deletions
6
...positories/AmoKategoriseringRepository.kt → ...et/api/amo/AmoKategoriseringRepository.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
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
3 changes: 1 addition & 2 deletions
3
...ommet/api/routes/v1/ArenaAdapterRoutes.kt → ...et/api/arenaadapter/ArenaAdapterRoutes.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
20 changes: 12 additions & 8 deletions
20
...ommet/api/services/ArenaAdapterService.kt → ...t/api/arenaadapter/ArenaAdapterService.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
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
10 changes: 5 additions & 5 deletions
10
...etsrommet/api/services/ArrangorService.kt → ...etsrommet/api/arrangor/ArrangorService.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
8 changes: 4 additions & 4 deletions
8
...et/api/routes/v1/BrregVirksomhetRoutes.kt → ...met/api/arrangor/BrregVirksomhetRoutes.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
10 changes: 5 additions & 5 deletions
10
...et/api/repositories/ArrangorRepository.kt → ...met/api/arrangor/db/ArrangorRepository.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
2 changes: 1 addition & 1 deletion
2
...kafka/consumers/amt/AmtVirksomhetV1Dto.kt → .../api/arrangor/kafka/AmtVirksomhetV1Dto.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
4 changes: 2 additions & 2 deletions
4
...ers/amt/AmtVirksomheterV1KafkaConsumer.kt → ...r/kafka/AmtVirksomheterV1KafkaConsumer.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
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
Oops, something went wrong.