use of org.orcid.jaxb.model.message.ContributorAttributes in project ORCID-Source by ORCID.
the class CurrentWorkContributor method retrieveContributorAttributes.
private ContributorAttributes retrieveContributorAttributes(Contributor contributor) {
ContributorAttributes attributes = contributor.getContributorAttributes();
if (attributes == null) {
attributes = new ContributorAttributes();
contributor.setContributorAttributes(attributes);
}
return attributes;
}
use of org.orcid.jaxb.model.message.ContributorAttributes in project ORCID-Source by ORCID.
the class CurrentWorkContributor method getContributor.
public Contributor getContributor() {
Contributor contributor = new Contributor();
if (StringUtils.isNotBlank(orcid)) {
contributor.setContributorOrcid(new ContributorOrcid(orcid));
}
if (StringUtils.isNotBlank(creditName)) {
contributor.setCreditName(new CreditName(creditName));
}
if (StringUtils.isNotBlank(email)) {
contributor.setContributorEmail(new ContributorEmail(email));
}
if (StringUtils.isNotBlank(role)) {
ContributorAttributes attributes = retrieveContributorAttributes(contributor);
ContributorRole contributorRole = ContributorRole.fromValue(role);
attributes.setContributorRole(contributorRole);
}
if (StringUtils.isNotBlank(sequence)) {
ContributorAttributes attributes = retrieveContributorAttributes(contributor);
SequenceType sequenceType = SequenceType.fromValue(sequence);
attributes.setContributorSequence(sequenceType);
}
return contributor;
}
use of org.orcid.jaxb.model.message.ContributorAttributes in project ORCID-Source by ORCID.
the class Publication method getOrcidWork.
public OrcidWork getOrcidWork() {
initCrossRefContext();
OrcidWork orcidWork = new OrcidWork();
if (StringUtils.isNotBlank(doi)) {
WorkExternalIdentifier doiExtId = new WorkExternalIdentifier();
doiExtId.setWorkExternalIdentifierType(WorkExternalIdentifierType.DOI);
doiExtId.setWorkExternalIdentifierId(new WorkExternalIdentifierId(doi));
WorkExternalIdentifiers workExtIds = new WorkExternalIdentifiers();
orcidWork.setWorkExternalIdentifiers(workExtIds);
workExtIds.getWorkExternalIdentifier().add(doiExtId);
}
if (StringUtils.isNotBlank(title)) {
WorkTitle workTitle = new WorkTitle();
orcidWork.setWorkTitle(workTitle);
workTitle.setTitle(new Title(title));
}
// Will throw an IllegalArgumentException if not valid
CitationType cType = CitationType.fromValue(citationType);
Citation citation = new Citation(fullCitation, cType);
orcidWork.setWorkCitation(citation);
String publicationDateString = crossRefContext.getDate();
if (StringUtils.isNotBlank(publicationDateString)) {
XMLGregorianCalendar publicationDateGregCal = DateUtils.convertToXMLGregorianCalendar(publicationDateString);
if (publicationDateGregCal != null) {
Year publicationyear = new Year(publicationDateGregCal.getYear());
Month publicationMonth = publicationDateGregCal.getMonth() == DatatypeConstants.FIELD_UNDEFINED ? null : new Month(publicationDateGregCal.getMonth());
Day publicationDay = publicationDateGregCal.getDay() == DatatypeConstants.FIELD_UNDEFINED ? null : new Day(publicationDateGregCal.getDay());
orcidWork.setPublicationDate(new PublicationDate(publicationyear, publicationMonth, publicationDay));
}
}
String author = crossRefContext.getAuthor();
if (StringUtils.isNotBlank(author)) {
WorkContributors workContributors = new WorkContributors();
orcidWork.setWorkContributors(workContributors);
Contributor contributor = new Contributor();
workContributors.getContributor().add(contributor);
contributor.setCreditName(new CreditName(author));
ContributorAttributes contributorAttributes = new ContributorAttributes();
contributor.setContributorAttributes(contributorAttributes);
contributorAttributes.setContributorRole(ContributorRole.AUTHOR);
contributorAttributes.setContributorSequence(SequenceType.FIRST);
}
return orcidWork;
}
use of org.orcid.jaxb.model.message.ContributorAttributes in project ORCID-Source by ORCID.
the class OrcidProfileManagerBaseTest method createWork1Contributors.
private WorkContributors createWork1Contributors() {
WorkContributors workContributors = new WorkContributors();
Contributor workContributor1 = new Contributor();
workContributors.getContributor().add(workContributor1);
workContributor1.setCreditName(new CreditName("Will Simpson"));
ContributorAttributes contributorAttributes1 = new ContributorAttributes();
workContributor1.setContributorAttributes(contributorAttributes1);
contributorAttributes1.setContributorRole(ContributorRole.AUTHOR);
contributorAttributes1.setContributorSequence(SequenceType.FIRST);
Contributor workContributor2 = new Contributor();
workContributors.getContributor().add(workContributor2);
workContributor2.setCreditName(new CreditName("Josiah Wedgewood"));
ContributorAttributes contributorAttributes2 = new ContributorAttributes();
workContributor2.setContributorAttributes(contributorAttributes2);
contributorAttributes2.setContributorRole(ContributorRole.AUTHOR);
contributorAttributes2.setContributorSequence(SequenceType.ADDITIONAL);
return workContributors;
}
Aggregations