All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dspace.app.sherpa.v2.SHERPAJournal Maven / Gradle / Ivy

The newest version!
/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.dspace.app.sherpa.v2;

import java.io.Serializable;
import java.util.List;

/**
 * Plain java representation of a SHERPA Journal object, based on SHERPA API v2 responses.
 *
 * In a SHERPA search for journal deposit policies, this is generally structured
 * as a list in the SHERPAResponse object.
 * Each journal contains a list of publisher data and list of publishing policies as well as basic metadata
 * about the journal such as ISSNs, titles, whether it appears in DOAJ, primary publisher, etc.
 * @see SHERPAResponse
 * @see org.dspace.external.provider.impl.SHERPAv2JournalDataProvider
 *
 * @author Kim Shepherd
 */
public class SHERPAJournal implements Serializable {

    private List titles;
    private String url;
    private List issns;
    private String romeoPub;
    private String zetoPub;
    private SHERPAPublisher publisher;
    private List publishers;
    private List policies;
    private Boolean inDOAJ;

    public SHERPAJournal() {

    }

    public List getTitles() {
        return titles;
    }

    public void setTitles(List titles) {
        this.titles = titles;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public List getIssns() {
        return issns;
    }

    public void setIssns(List issns) {
        this.issns = issns;
    }

    public String getRomeoPub() {
        return romeoPub;
    }

    public void setRomeoPub(String romeoPub) {
        this.romeoPub = romeoPub;
    }

    public String getZetoPub() {
        return zetoPub;
    }

    public void setZetoPub(String zetoPub) {
        this.zetoPub = zetoPub;
    }

    public SHERPAPublisher getPublisher() {
        return publisher;
    }

    public void setPublisher(SHERPAPublisher publisher) {
        this.publisher = publisher;
    }

    public List getPublishers() {
        return publishers;
    }

    public void setPublishers(List publishers) {
        this.publishers = publishers;
    }

    public List getPolicies() {
        return policies;
    }

    public void setPolicies(List policies) {
        this.policies = policies;
    }

    public Boolean getInDOAJ() {
        return inDOAJ;
    }

    public void setInDOAJ(Boolean inDOAJ) {
        this.inDOAJ = inDOAJ;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy