Package com.priint.pubserver.entity
Class ResultFile
- java.lang.Object
-
- com.priint.pubserver.entity.ResultFile
-
- All Implemented Interfaces:
java.io.Serializable
public class ResultFile extends java.lang.Object implements java.io.SerializableThe type Result file.- Since:
- 4.0.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResultFile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetByteCount()Gets byte count.java.lang.StringgetDependency()Gets dependency.java.lang.StringgetMimeFormat()Gets mime format.java.lang.StringgetName()Gets name.voidsetByteCount(int byteCount)Sets byte count.voidsetDependency(java.lang.String dependency)Sets dependency.voidsetMimeFormat(java.lang.String mimeFormat)Sets mime format.voidsetName(java.lang.String name)Sets name.
-
-
-
Method Detail
-
getDependency
public java.lang.String getDependency()
Gets dependency.- Returns:
- the dependency as String
-
setDependency
public void setDependency(java.lang.String dependency)
Sets dependency.- Parameters:
dependency-
-
getName
public java.lang.String getName()
Gets name.- Returns:
- the name as String
-
setName
public void setName(java.lang.String name)
Sets name.- Parameters:
name-
-
getMimeFormat
public java.lang.String getMimeFormat()
Gets mime format.- Returns:
- the mime format as String
-
setMimeFormat
public void setMimeFormat(java.lang.String mimeFormat)
Sets mime format.- Parameters:
mimeFormat-
-
getByteCount
public int getByteCount()
Gets byte count.- Returns:
- the byte count as int
-
setByteCount
public void setByteCount(int byteCount)
Sets byte count.- Parameters:
byteCount-
-
-