-
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 "Revert "Redo: fjern bruk av apigw til fordel for maskinporten…
… og direkte kall""
- Loading branch information
Showing
27 changed files
with
288 additions
and
301 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...r/min_side/clients/azuread/AzureClient.kt → ...eidsgiver/min_side/azuread/AzureClient.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
.../min_side/clients/azuread/AzureService.kt → ...idsgiver/min_side/azuread/AzureService.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
116 changes: 0 additions & 116 deletions
116
src/main/kotlin/no/nav/arbeidsgiver/min_side/clients/altinn/AltinnTilgangssøknadClient.kt
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
src/main/kotlin/no/nav/arbeidsgiver/min_side/clients/altinn/dto/DelegationRequest.kt
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/main/kotlin/no/nav/arbeidsgiver/min_side/clients/altinn/dto/Søknadsstatus.kt
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...iver/min_side/clients/RetryInterceptor.kt → ...giver/min_side/config/RetryInterceptor.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
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
14 changes: 0 additions & 14 deletions
14
src/main/kotlin/no/nav/arbeidsgiver/min_side/models/Altinn2Organisasjon.kt
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/main/kotlin/no/nav/arbeidsgiver/min_side/models/AltinnTilgangssøknad.kt
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
src/main/kotlin/no/nav/arbeidsgiver/min_side/services/altinn/AltinnConfig.kt
This file was deleted.
Oops, something went wrong.
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
6 changes: 2 additions & 4 deletions
6
...ntroller/AltinnTilgangSoknadController.kt → ...gssoknad/AltinnTilgangSoknadController.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
16 changes: 16 additions & 0 deletions
16
src/main/kotlin/no/nav/arbeidsgiver/min_side/tilgangssoknad/AltinnTilgangssø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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package no.nav.arbeidsgiver.min_side.tilgangssoknad | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties | ||
import com.fasterxml.jackson.annotation.JsonInclude | ||
|
||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
data class AltinnTilgangssøknad( | ||
val orgnr: String? = null, | ||
val serviceCode: String? = null, | ||
val serviceEdition: Int? = null, | ||
val status: String? = null, | ||
val createdDateTime: String? = null, | ||
val lastChangedDateTime: String? = null, | ||
val submitUrl: String? = null | ||
) |
Oops, something went wrong.