diff --git a/src/main/java/org/gcube/data_catalogue/grsf_publish_ws/json/input/record/FisheryRecord.java b/src/main/java/org/gcube/data_catalogue/grsf_publish_ws/json/input/record/FisheryRecord.java index 9f3f57d..d6e69a8 100644 --- a/src/main/java/org/gcube/data_catalogue/grsf_publish_ws/json/input/record/FisheryRecord.java +++ b/src/main/java/org/gcube/data_catalogue/grsf_publish_ws/json/input/record/FisheryRecord.java @@ -49,10 +49,6 @@ public class FisheryRecord extends Common { @CustomField(key=Constants.RESOURCES_EXPLOITED_CUSTOM_KEY) private List resourcesExploited; - @JsonProperty(Constants.PRODUCTION_SYSTEM_TYPE_JSON_KEY) - @CustomField(key=Constants.PRODUCTION_SYSTEM_TYPE_CUSTOM_KEY) - private List productionSystemType; - @JsonProperty(Constants.FLAG_STATE_JSON_KEY) @CustomField(key=Constants.FLAG_STATE_CUSTOM_KEY) @Tag @@ -97,7 +93,6 @@ public class FisheryRecord extends Common { this.fishingArea = fishingArea; this.resourcesExploited = resourcesExploited; this.jurisdictionArea = jurisdictionArea; - this.productionSystemType = productionSystemType; this.flagState = flagState; this.fishingGear = fishingGear; this.type = type; @@ -165,15 +160,6 @@ public class FisheryRecord extends Common { this.resourcesExploited = resourcesExploited; } - public List getProductionSystemType() { - return productionSystemType; - } - - public void setProductionSystemType( - List productionSystemType) { - this.productionSystemType = productionSystemType; - } - public List getFlagState() { return flagState; } @@ -197,7 +183,6 @@ public class FisheryRecord extends Common { + ", traceabilityFlag=" + traceabilityFlag + ", resourcesExploited=" + resourcesExploited + ", jurisdictionArea=" + jurisdictionArea - + ", productionSystemType=" + productionSystemType + ", flagState=" + flagState + ", fishingGear=" + fishingGear + ", type=" + type + "]"; }