Added query parameter constant to get the whole item fields refs #23691

This commit is contained in:
Luca Frosini 2022-07-26 11:46:33 +02:00
parent c1b7512557
commit e344f54703
3 changed files with 9 additions and 2 deletions

View File

@ -2,6 +2,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
# Changelog for gCube Catalogue (gCat) API
## [v2.3.0-SNAPSHOT]
- Aligned constants name used as query parameters
- Added query parameter constant used in item listing to get the whole item instead of just the name [#23691]
## [v2.2.0]
- Added support to manage configurations [#22658]

View File

@ -9,7 +9,7 @@
</parent>
<groupId>org.gcube.data-catalogue</groupId>
<artifactId>gcat-api</artifactId>
<version>2.2.0</version>
<version>2.3.0-SNAPSHOT</version>
<name>gCube Catalogue (gCat) API</name>
<description>gCube Catalogue (gCat) API is a library containing classes shared across gcat* components</description>
<properties>

View File

@ -18,7 +18,8 @@ public class GCatConstants {
public static final String OFFSET_QUERY_PARAMETER = "offset";
public static final String COUNT_QUERY_PARAMETER = "count";
public static final String OWN_ONLY_QUERY_PARAMETER = "own_only";
public static final String ALL_FIELDS_QUERY_PARAMETER = "all_fields";
public static final String COUNT_KEY = "count";
public static final String ORGANIZATION_PARAMETER = "organization";