com.salesmanager.shop.model.content.ContentFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sm-shop-model Show documentation
Show all versions of sm-shop-model Show documentation
sm-shop-model contains Shopizer model objects for api
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;
}
}