-
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.
* Bump develop to 1.2.0-alpha0 (#37) * Update build.gradle * Update bumpver.toml * bump version to 1.2.0-alpha1 * Multiticket Update (#39) * Disable public stacktraces on 500 errors * Bump priority on SwodlrExceptionResolver * Move EdlProxyController to edl subpackage * Initial user roles implementation * Cache User result in UserReferences * Initial invalidation implementation * Enable cicd on all branches * Linting * Update changelog * Cache Fix + Invalidate Change (#40) * Regenerate on ERROR or UNAVAILABLE * Change invalidate endpoint to only invalidate * Initial filtering implementation (#41) * update changelog to add cache fix and filter performance improvement. * revert Build 'n Deploy from push '*' wildcard to push branches in build.yml. * fix syntax * fix syntax * bump version to 1.2.0-alpha2 * Updated changelog with release/1.2.0 * bump version to 1.2.0-rc0 * Update graphql schema with new filtering endpoint * bump version to 1.3.0-rc0 * Hotfix product filtering * bump version to 1.3.0-rc1 * update CHNAGELOG and rename to .md * bump version to 1.3.0-rc2 * Fix incorrect version bump * bump version to 1.2.0-rc1 --------- Co-authored-by: Frank Greguska <89428916+frankinspace@users.noreply.github.com> Co-authored-by: Frank Greguska <Francis.Greguska@jpl.nasa.gov> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Josh Garde <jgarde@jpl.nasa.gov>
- Loading branch information
1 parent
d5dca14
commit be1f06f
Showing
16 changed files
with
355 additions
and
25 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
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: 17 additions & 1 deletion
18
src/main/java/gov/nasa/podaac/swodlr/l2rasterproduct/L2RasterProductQuery.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,9 +1,25 @@ | ||
package gov.nasa.podaac.swodlr.l2rasterproduct; | ||
|
||
import gov.nasa.podaac.swodlr.rasterdefinition.GridType; | ||
import gov.nasa.podaac.swodlr.user.User; | ||
import java.time.LocalDateTime; | ||
import java.util.List; | ||
import java.util.UUID; | ||
|
||
public interface L2RasterProductQuery { | ||
List<L2RasterProduct> findByUser(User user, UUID after, int limit); | ||
List<L2RasterProduct> findByUser( | ||
User user, | ||
Integer cycle, | ||
Integer pass, | ||
Integer scene, | ||
Boolean outputGranuleExtentFlag, | ||
GridType outputSamplingGridType, | ||
Integer rasterResolution, | ||
Integer utmZoneAdjust, | ||
Integer mgrsBandAdjust, | ||
LocalDateTime beforeTimestamp, | ||
LocalDateTime afterTimestamp, | ||
UUID after, | ||
int limit | ||
); | ||
} |
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
3 changes: 2 additions & 1 deletion
3
...c/swodlr/security/EdlProxyController.java → ...odlr/security/edl/EdlProxyController.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
Oops, something went wrong.