dump #50

Merged
claudio.atzori merged 98 commits from miriam.baglioni/dnet-hadoop:dump into master 2020-11-04 18:07:01 +01:00
1 changed files with 7 additions and 0 deletions
Showing only changes of commit 11b80899d7 - Show all commits

View File

@ -3,6 +3,13 @@ package eu.dnetlib.dhp.schema.dump.oaf;
import java.io.Serializable;
/**
* This class to store the common information about the project that will be dumped for community and for the whole graph
* - private String id to store the id of the project (OpenAIRE id)
* - private String code to store the grant agreement of the project
* - private String acronym to store the acronym of the project
* - private String title to store the tile of the project
*/
public class Project implements Serializable {
protected String id;// OpenAIRE id
protected String code;