package eu.dnetlib.functionality.lightui.utils;

import java.io.Serializable;

public class CachedImage implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 8427058763022108464L;

	byte[] data;
	String contentType;
	
	
	public CachedImage(byte[] data, String contentType) {
		super();
		this.data = data;
		this.contentType = contentType;
	}
	
	public byte[] getData() {
		return data;
	}
	public void setData(byte[] data) {
		this.data = data;
	}
	public String getContentType() {
		return contentType;
	}
	public void setContentType(String contentType) {
		this.contentType = contentType;
	}
	
	
}
