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

org.dspace.app.itemmarking.ItemMarkingInfo Maven / Gradle / Ivy

There is a newer version: 8.0
Show 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.itemmarking;

/**
 * Simple DTO to transfer data about the marking info for an item
 *
 * @author Kostas Stamatis
 */
public class ItemMarkingInfo {
    private String imageName;
    private String classInfo;
    private String tooltip;
    private String link;

    public ItemMarkingInfo() {
        super();
    }

    public String getImageName() {
        return imageName;
    }

    public void setImageName(String imageName) {
        this.imageName = imageName;
    }

    public String getTooltip() {
        return tooltip;
    }

    public void setTooltip(String tooltip) {
        this.tooltip = tooltip;
    }

    public String getLink() {
        return link;
    }

    public void setLink(String link) {
        this.link = link;
    }

    public String getClassInfo() {
        return classInfo;
    }

    public void setClassInfo(String classInfo) {
        this.classInfo = classInfo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy