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

com.alogient.cameleon.sdk.content.model.ImageUpdateModel Maven / Gradle / Ivy

package com.alogient.cameleon.sdk.content.model;

public class ImageUpdateModel {
    private String fileName;

    private byte[] data;

    public ImageUpdateModel(String fileName, byte[] data) {
        this.fileName = fileName;
        this.data = data;
    }

    /**
     * @return the fileName
     */
    public String getFileName() {
        return fileName;
    }

    /**
     * @param fileName the fileName to set
     */
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }

    /**
     * @return the data
     */
    public byte[] getData() {
        return data;
    }

    /**
     * @param data the data to set
     */
    public void setData(byte[] data) {
        this.data = data;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy