This repository has been archived on 2021-11-25. You can view files and clone it, but cannot push or open issues or pull requests.
vmereports-manager-portlet/src/main/java/org/gcube/portlets/user/reportgenerator/shared/ReportImage.java

47 lines
856 B
Java

package org.gcube.portlets.user.reportgenerator.shared;
import java.io.Serializable;
@SuppressWarnings("serial")
public class ReportImage implements Serializable {
private String id;
private String url;
private int width;
private int height;
public ReportImage() {
super();
}
public ReportImage(String id, String url, int width, int height) {
super();
this.id = id;
this.url = url;
this.width = width;
this.height = height;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
}