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

com.salesmanager.shop.model.content.ContentFile Maven / Gradle / Ivy

The newest version!
package com.salesmanager.shop.model.content;


/**
 * Model object used in webservice
 * when creatin files
 * @author carlsamson
 *
 */
public class ContentFile extends ContentPath {
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private byte[] file;
	

	public byte[] getFile() {
		return file;
	}
	public void setFile(byte[] file) {
		this.file = file;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy