/* * */ package vn.mobileid.fms.client; import java.io.InputStream; // TODO: Auto-generated Javadoc /** * The Class JCRFile. */ public class JCRFile { /** The uuid. */ private String uuid; /** The mime type. */ private String mimeType; /** The last modified. */ private String lastModified; /** The last modified by. */ private String lastModifiedBy; /** The file path. */ private String filePath; /** The file name. */ private String fileName; /** The stream. */ private transient InputStream stream; /** The host. */ private String host; /** The folder name. */ private String folderName; /** The folder prefix. */ private String folderPrefix; /** * Sets the uuid. * * @param jcrUuid the new uuid */ public void setUuid(String jcrUuid){ this.uuid = jcrUuid; } /** * Sets the mime type. * * @param jcrMimeType the new mime type */ public void setMimeType(String jcrMimeType){ this.mimeType = jcrMimeType; } /** * Sets the last modified. * * @param jcrLastModified the new last modified */ public void setLastModified(String jcrLastModified){ this.lastModified = jcrLastModified; } /** * Sets the last modified by. * * @param jcrLastModifiedBy the new last modified by */ public void setLastModifiedBy(String jcrLastModifiedBy){ this.lastModifiedBy = jcrLastModifiedBy; } /** * Sets the file path. * * @param jcrFilePath the new file path */ public void setFilePath(String jcrFilePath){ this.filePath = jcrFilePath; } /** * Sets the stream. * * @param jcrStream the new stream */ public void setStream(InputStream jcrStream){ this.stream = jcrStream; } /** * Gets the uuid. * * @return the uuid */ public String getUuid(){ return this.uuid; } /** * Gets the mime type. * * @return the mime type */ public String getMimeType(){ return this.mimeType; } /** * Gets the last modified. * * @return the last modified */ public String getLastModified(){ return this.lastModified; } /** * Gets the last modified by. * * @return the last modified by */ public String getLastModifiedBy(){ return this.lastModifiedBy; } /** * Gets the file path. * * @return the file path */ public String getFilePath(){ return this.filePath; } /** * Gets the stream. * * @return the stream */ public InputStream getStream(){ return this.stream; } /** * Gets the file name. * * @return the file name */ public String getFileName() { return fileName; } /** * Sets the file name. * * @param fileName the new file name */ public void setFileName(String fileName) { this.fileName = fileName; } /** * Gets the folder name. * * @return the folder name */ public String getFolderName() { return folderName; } /** * Sets the folder name. * * @param folderName the new folder name */ public void setFolderName(String folderName) { this.folderName = folderName; } /** * Gets the folder prefix. * * @return the folder prefix */ public String getFolderPrefix() { return folderPrefix; } /** * Sets the folder prefix. * * @param folderPrefix the new folder prefix */ public void setFolderPrefix(String folderPrefix) { this.folderPrefix = folderPrefix; } /** * Gets the host. * * @return the host */ public String getHost() { return host; } /** * Sets the host. * * @param host the new host */ public void setHost(String host) { this.host = host; } }