Class H2020Classification

java.lang.Object
eu.dnetlib.dhp.schema.oaf.H2020Classification
All Implemented Interfaces:
Serializable

public class H2020Classification extends Object implements 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
See Also:
  • Constructor Details

    • H2020Classification

      public H2020Classification()
  • Method Details

    • getH2020Programme

      public H2020Programme getH2020Programme()
    • setH2020Programme

      public void setH2020Programme(H2020Programme h2020Programme)
    • getLevel1

      public String getLevel1()
    • setLevel1

      public void setLevel1(String level1)
    • getLevel2

      public String getLevel2()
    • setLevel2

      public void setLevel2(String level2)
    • getLevel3

      public String getLevel3()
    • setLevel3

      public void setLevel3(String level3)
    • getClassification

      public String getClassification()
    • setClassification

      public void setClassification(String classification)