-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for author, copyright and license info
- Loading branch information
1 parent
956685e
commit 0ad58e5
Showing
4 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
src/main/java/org/fairgenomes/transformer/datastructures/Author.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
6 changes: 6 additions & 0 deletions
6
src/main/java/org/fairgenomes/transformer/datastructures/Copyright.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
src/main/java/org/fairgenomes/transformer/datastructures/License.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |