Refs #11749: Add 'With Similarities' - 'No Similarities' tag to GRSF Records

Task-Url: https://support.d4science.org/issues/11749

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-catalogue/grsf-common-library@167394 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2018-05-10 14:44:48 +00:00
parent daa5253ef3
commit 808fe1a771
2 changed files with 9 additions and 4 deletions

View File

@ -2,7 +2,8 @@ package org.gcube.datacatalogue.common;
/**
* Constants shared between manager panel and service
* @author Costantino Perciante at ISTI-CNR (costantino.perciante@isti.cnr.it)
* @author Costantino Perciante (ISTI - CNR)
* @author Luca Frosini (ISTI - CNR)
*/
public class Constants {
@ -205,5 +206,8 @@ public class Constants {
// groups for traceability and sdg flags
public static final String TRACEABILITY_FLAG_GROUP_NAME = "traceability-flag";
public static final String SDG_FLAG_GROUP_NAME = "sdg-flag";
// Used to Tag WithSimilarities/WithoutSimilarities
public static final String SIMILARITIES_INDICATOR = "similarities_indicator";
}

View File

@ -9,12 +9,13 @@ import com.fasterxml.jackson.annotation.JsonValue;
/**
* Type for Fishery records
* @author Costantino Perciante at ISTI-CNR (costantino.perciante@isti.cnr.it)
* @author Costantino Perciante (ISTI - CNR)
* @author Luca Frosini (ISTI - CNR)
*/
public enum Fishery_Type {
Fishing_Activity("Fishing Activity"), // for fishery
Fishing_Description("Fishing Description"); // for fishery
Fishing_Unit("Fishing Uni"), // for fishery
Other_Fishery("Other Fishery"); // for fishery
private String subGroupNameOrig;