generated from bcgov/quickstart-openshift
-
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.
Merge branch 'main' into feat/SILVA-514
- Loading branch information
Showing
42 changed files
with
848 additions
and
568 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
18 changes: 13 additions & 5 deletions
18
backend/src/main/java/ca/bc/gov/restapi/results/common/pagination/PaginatedResult.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
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
26 changes: 26 additions & 0 deletions
26
backend/src/main/java/ca/bc/gov/restapi/results/oracle/SilvaOracleConstants.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,26 @@ | ||
package ca.bc.gov.restapi.results.oracle; | ||
|
||
import lombok.AccessLevel; | ||
import lombok.NoArgsConstructor; | ||
|
||
@NoArgsConstructor(access = AccessLevel.PRIVATE) | ||
public class SilvaOracleConstants { | ||
|
||
public static final String ORG_UNIT = "orgUnit"; | ||
public static final String CATEGORY = "category"; | ||
public static final String STATUS_LIST = "statusList"; | ||
public static final String MY_OPENINGS = "myOpenings"; | ||
public static final String SUBMITTED_TO_FRPA = "submittedToFrpa"; | ||
public static final String DISTURBANCE_DATE_START = "disturbanceDateStart"; | ||
public static final String DISTURBANCE_DATE_END = "disturbanceDateEnd"; | ||
public static final String REGEN_DELAY_DATE_START = "regenDelayDateStart"; | ||
public static final String REGEN_DELAY_DATE_END = "regenDelayDateEnd"; | ||
public static final String FREE_GROWING_DATE_START = "freeGrowingDateStart"; | ||
public static final String FREE_GROWING_DATE_END = "freeGrowingDateEnd"; | ||
public static final String UPDATE_DATE_START = "updateDateStart"; | ||
public static final String UPDATE_DATE_END = "updateDateEnd"; | ||
public static final String CUTTING_PERMIT_ID = "cuttingPermitId"; | ||
public static final String CUT_BLOCK_ID = "cutBlockId"; | ||
public static final String TIMBER_MARK = "timberMark"; | ||
public static final String MAIN_SEARCH_TERM = "mainSearchTerm"; | ||
} |
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.