From 1cda6fd1ba34b941c3f35a16700da35192a0954e Mon Sep 17 00:00:00 2001 From: "miriam.baglioni" Date: Fri, 2 Oct 2020 12:27:48 +0200 Subject: [PATCH] modification related to https://code-repo.d4science.org/D-Net/dnet-hadoop/pulls/46#issuecomment-2051 --- .../dump/oaf/graph/H2020Classification.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/H2020Classification.java b/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/H2020Classification.java index 39fde5ebb..4a61663b8 100644 --- a/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/H2020Classification.java +++ b/dhp-schemas/src/main/java/eu/dnetlib/dhp/schema/dump/oaf/graph/H2020Classification.java @@ -3,6 +3,23 @@ package eu.dnetlib.dhp.schema.dump.oaf.graph; import java.io.Serializable; +/** + * To store information about the classification for the project. The classification depends on the programme. For example + * H2020-EU.3.4.5.3 can be classified as + * H2020-EU.3. => Societal Challenges (level1) + * H2020-EU.3.4. => Transport (level2) + * H2020-EU.3.4.5. => CLEANSKY2 (level3) + * H2020-EU.3.4.5.3. => IADP Fast Rotorcraft (level4) + * + * We decided to explicitly represent up to three levels in the classification. + * + * H2020Classification has the following parameters: + * - private Programme programme to store the information about the programme related to this classification + * - private String level1 to store the information about the level 1 of the classification (Priority or Pillar of the EC) + * - private String level2 to store the information about the level2 af the classification (Objectives (?)) + * - private String level3 to store the information about the level3 of the classification + * - private String classification to store the entire classification related to the programme + */ public class H2020Classification implements Serializable { private Programme programme;