use of org.orcid.jaxb.model.record_rc2.Keywords in project ORCID-Source by ORCID.
the class PublicV2ApiServiceDelegatorTest method testViewKeywords.
@Test
public void testViewKeywords() {
Response response = serviceDelegator.viewKeywords(ORCID);
assertNotNull(response);
Keywords keywords = (Keywords) response.getEntity();
assertNotNull(keywords);
assertNotNull(keywords.getLastModifiedDate());
assertNotNull(keywords.getLastModifiedDate().getValue());
assertEquals("/0000-0000-0000-0003/keywords", keywords.getPath());
assertEquals(1, keywords.getKeywords().size());
Keyword keyword = keywords.getKeywords().get(0);
assertNotNull(keyword);
assertNotNull(keyword.getLastModifiedDate());
assertNotNull(keyword.getLastModifiedDate().getValue());
assertEquals(Long.valueOf(9), keyword.getPutCode());
assertEquals("PUBLIC", keyword.getContent());
assertEquals(Visibility.PUBLIC.value(), keyword.getVisibility().value());
assertEquals("/0000-0000-0000-0003/keywords/9", keyword.getPath());
assertEquals("APP-5555555555555555", keyword.getSource().retrieveSourcePath());
}
use of org.orcid.jaxb.model.record_rc2.Keywords in project ORCID-Source by ORCID.
the class ProfileKeywordManagerTest method getPublicTest.
@Test
public void getPublicTest() {
String orcid = "0000-0000-0000-0003";
Keywords elements = profileKeywordManager.getPublicKeywords(orcid, System.currentTimeMillis());
assertNotNull(elements);
assertNotNull(elements.getKeywords());
assertEquals(1, elements.getKeywords().size());
assertEquals(Long.valueOf(9), elements.getKeywords().get(0).getPutCode());
}
use of org.orcid.jaxb.model.record_rc2.Keywords in project ORCID-Source by ORCID.
the class MemberV2ApiServiceDelegatorImpl method viewKeywords.
@Override
public Response viewKeywords(String orcid) {
Keywords keywords = profileKeywordManagerReadOnly.getKeywords(orcid, getLastModifiedTime(orcid));
// Lets copy the list so we don't modify the cached collection
if (keywords.getKeywords() != null) {
List<Keyword> filteredList = new ArrayList<Keyword>(keywords.getKeywords());
keywords = new Keywords();
keywords.setKeywords(filteredList);
}
orcidSecurityManager.checkAndFilter(orcid, keywords.getKeywords(), ScopePathType.ORCID_BIO_READ_LIMITED);
ElementUtils.setPathToKeywords(keywords, orcid);
Api2_0_LastModifiedDatesHelper.calculateLastModified(keywords);
sourceUtils.setSourceName(keywords);
return Response.ok(keywords).build();
}
use of org.orcid.jaxb.model.record_rc2.Keywords in project ORCID-Source by ORCID.
the class KeywordsForm method toKeywords.
public Keywords toKeywords() {
Keywords keywords = new Keywords();
List<Keyword> kList = new ArrayList<Keyword>();
for (KeywordForm form : this.keywords) {
kList.add(form.toKeyword());
}
keywords.setKeywords(kList);
return keywords;
}
use of org.orcid.jaxb.model.record_rc2.Keywords in project ORCID-Source by ORCID.
the class ValidateV2_1SamplesTest method testMarshallKeyword.
@Test
public void testMarshallKeyword() throws JAXBException, SAXException, URISyntaxException {
Keywords object = (Keywords) unmarshallFromPath("/record_2.1/samples/read_samples/keywords-2.1.xml", Keywords.class);
marshall(object, "/record_2.1/keyword-2.1.xsd");
}
Aggregations