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

org.dspace.app.requestitem.RequestItemAuthor 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.requestitem;

import org.dspace.eperson.EPerson;

/**
 * Simple DTO to transfer data about the corresponding author for the Request
 * Copy feature.
 *
 * @author Andrea Bollini
 */
public class RequestItemAuthor {
    private final String fullName;
    private final String email;

    /**
     * Construct an author record from given data.
     *
     * @param fullName the author's full name.
     * @param email the author's email address.
     */
    public RequestItemAuthor(String fullName, String email) {
        super();
        this.fullName = fullName;
        this.email = email;
    }

    /**
     * Construct an author from an EPerson's metadata.
     *
     * @param ePerson the EPerson.
     */
    public RequestItemAuthor(EPerson ePerson) {
        super();
        this.fullName = ePerson.getFullName();
        this.email = ePerson.getEmail();
    }

    public String getEmail() {
        return email;
    }

    public String getFullName() {
        return fullName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy