/** * ============================================================================= * * ORCID (R) Open Source * http://orcid.org * * Copyright (c) 2012-2014 ORCID, Inc. * Licensed under an MIT-Style License (MIT) * http://orcid.org/open-source-license * * This copyright and license information (including a link to the full license) * shall be included in its entirety in all copies or substantial portion of * the software. * * ============================================================================= */ package org.orcid.core.manager.read_only; import org.orcid.jaxb.model.record_v2.ResearcherUrl; import org.orcid.jaxb.model.record_v2.ResearcherUrls; public interface ResearcherUrlManagerReadOnly { /** * Return the list of public researcher urls associated to a specific profile * @param orcid * @return * the list of public researcher urls associated with the orcid profile * */ ResearcherUrls getPublicResearcherUrls(String orcid, long lastModified); /** * Return the list of researcher urls associated to a specific profile * @param orcid * @return * the list of researcher urls associated with the orcid profile * */ ResearcherUrls getResearcherUrls(String orcid, long lastModified); /** * Retrieve a researcher url from database * @param id * @return the ResearcherUrlEntity associated with the parameter id * */ ResearcherUrl getResearcherUrl(String orcid, long id); }