generated from FINTLabs/fint-spring-boot-template-project
-
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.
Add missing journalpost response properties
- Loading branch information
1 parent
c8dfac4
commit c1293f4
Showing
6 changed files
with
139 additions
and
67 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
13 changes: 4 additions & 9 deletions
13
src/main/java/no/fintlabs/model/EgrunnervervSakInstanceToDispatch.java
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,18 +1,13 @@ | ||
package no.fintlabs.model; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.extern.jackson.Jacksonized; | ||
import lombok.ToString; | ||
|
||
@Getter | ||
@Builder | ||
@Jacksonized | ||
@ToString | ||
public class EgrunnervervSakInstanceToDispatch { | ||
@JsonProperty("arkivnummer") | ||
private final String archiveInstanceId; | ||
@JsonProperty("u_elements") | ||
private final String urlToArchive; | ||
@JsonProperty("opprettelse_i_elements_fullfort") | ||
private final String archivedTimestamp; | ||
private final String arkivnummer; | ||
private final String opprettelse_i_elements_fullfort; | ||
} |