Skip to content

Commit

Permalink
Added support for author, copyright and license info
Browse files Browse the repository at this point in the history
  • Loading branch information
joerivandervelde committed Mar 4, 2021
1 parent 956685e commit 0ad58e5
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package org.fairgenomes.transformer.datastructures;

public class Author {
public String name;
public String email;
public String orcid;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package org.fairgenomes.transformer.datastructures;

public class Copyright {
public String holder;
public String years;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import java.io.File;
import java.time.LocalDate;
import java.util.HashMap;
import java.util.List;

public class FAIRGenomes {
Expand All @@ -15,6 +14,9 @@ public class FAIRGenomes {
public String version;
public LocalDate date;
public File lookupGlobalOptions;
public List<Author> authors;
public Copyright copyright;
public License license;
public List<Module> modules;

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package org.fairgenomes.transformer.datastructures;

public class License {
public String name;
public String url;
}

0 comments on commit 0ad58e5

Please sign in to comment.