Interface ZenodoAuthor
-
- All Known Implementing Classes:
ZenodoContributor,ZenodoCreator
public interface ZenodoAuthorThe Interface ZenodoAuthor.- Author:
- Francesco Mangiacrapa at ISTI-CNR (francesco.mangiacrapa@isti.cnr.it) Jan 15, 2020
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAffiliation()Gets the affiliation.StringgetGnd()Gets the gnd.StringgetName()Gets the name.StringgetOrcid()Gets the orcid.SerializableEnum<String>getType()Gets the type.voidsetAffiliation(String affiliation)Sets the affiliation.voidsetName(String name)Sets the name.voidsetOrcid(String orcid)Sets the orcid.voidsetType(SerializableEnum<String> type)Sets the type.
-
-
-
Field Detail
-
USER_ROLE
static final String USER_ROLE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
String getName()
Gets the name.- Returns:
- the name
-
getAffiliation
String getAffiliation()
Gets the affiliation.- Returns:
- the affiliation
-
getOrcid
String getOrcid()
Gets the orcid.- Returns:
- the orcid
-
getGnd
String getGnd()
Gets the gnd.- Returns:
- the gnd
-
getType
SerializableEnum<String> getType()
Gets the type.- Returns:
- the type
-
setType
void setType(SerializableEnum<String> type)
Sets the type.- Parameters:
type- the new type
-
setName
void setName(String name)
Sets the name.- Parameters:
name- the new name
-
setAffiliation
void setAffiliation(String affiliation)
Sets the affiliation.- Parameters:
affiliation- the new affiliation
-
setOrcid
void setOrcid(String orcid)
Sets the orcid.- Parameters:
orcid- the new orcid
-
-