-
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.
Merge branch 'main' into feat/ci/legacydb
- Loading branch information
Showing
44 changed files
with
2,304 additions
and
735 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
backend/src/main/java/ca/bc/gov/app/dto/bcregistry/BcRegistryAlternateNameDto.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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package ca.bc.gov.app.dto.bcregistry; | ||
|
||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import java.time.LocalDate; | ||
import java.time.ZonedDateTime; | ||
import lombok.With; | ||
|
||
@With | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public record BcRegistryAlternateNameDto( | ||
String entityType, | ||
String identifier, | ||
String name, | ||
ZonedDateTime registeredDate, | ||
LocalDate startDate | ||
) { | ||
|
||
} |
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
15 changes: 15 additions & 0 deletions
15
backend/src/main/java/ca/bc/gov/app/dto/bcregistry/BcRegistryFacetPartyDto.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package ca.bc.gov.app.dto.bcregistry; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import java.util.List; | ||
import lombok.With; | ||
|
||
@With | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public record BcRegistryFacetPartyDto( | ||
String partyName, | ||
List<String> partyRoles, | ||
String partyType | ||
) { | ||
|
||
} |
17 changes: 17 additions & 0 deletions
17
backend/src/main/java/ca/bc/gov/app/dto/bcregistry/BcRegistryFacetRequestBodyDto.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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package ca.bc.gov.app.dto.bcregistry; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import java.util.List; | ||
import java.util.Map; | ||
import lombok.With; | ||
|
||
@With | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public record BcRegistryFacetRequestBodyDto( | ||
BcRegistryFacetRequestQueryDto query, | ||
Map<String, List<String>> categories, | ||
int rows, | ||
int start | ||
) { | ||
|
||
} |
16 changes: 16 additions & 0 deletions
16
backend/src/main/java/ca/bc/gov/app/dto/bcregistry/BcRegistryFacetRequestQueryDto.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package ca.bc.gov.app.dto.bcregistry; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import lombok.With; | ||
|
||
@With | ||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public record BcRegistryFacetRequestQueryDto( | ||
String value, | ||
String name, | ||
String identifier | ||
) { | ||
|
||
} |
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.