/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package eu.dnetlib.functionality.recommendation.domain;

/**
 *
 * @author alexm
 */
public class Document {
    private String id;
    private String author;
    private String title;

    /**
     * @return the id
     */
    public String getId() {
        return id;
    }

    /**
     * @param id the id to set
     */
    public void setId( String id ) {
        this.id = id;
    }

    /**
     * @return the author
     */
    public String getAuthor() {
        return author;
    }

    /**
     * @param author the author to set
     */
    public void setAuthor( String author ) {
        this.author = author;
    }

    /**
     * @return the title
     */
    public String getTitle() {
        return title;
    }

    /**
     * @param title the title to set
     */
    public void setTitle( String title ) {
        this.title = title;
    }

}
