Class PrimefacesFileUploadFilterProperties
- java.lang.Object
- 
- org.joinfaces.autoconfigure.primefaces.PrimefacesFileUploadFilterProperties
 
- 
 @ConfigurationProperties("joinfaces.primefaces.file-upload-filter") public class PrimefacesFileUploadFilterProperties extends Object 
- 
- 
Constructor SummaryConstructors Constructor Description PrimefacesFileUploadFilterProperties()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetName()Name for the Primefaces FileUpload Filter.intgetOrder()Order for the PrimeFaces FileUpload Filter.DataSizegetThresholdSize()Maximum file size in bytes to keep uploaded files in memory.StringgetUploadDirectory()Disk repository path to keep temporary files that exceeds the threshold size.inthashCode()voidsetName(String name)Name for the Primefaces FileUpload Filter.voidsetOrder(int order)Order for the PrimeFaces FileUpload Filter.voidsetThresholdSize(DataSize thresholdSize)Maximum file size in bytes to keep uploaded files in memory.voidsetUploadDirectory(String uploadDirectory)Disk repository path to keep temporary files that exceeds the threshold size.StringtoString()
 
- 
- 
- 
Method Detail- 
getNamepublic String getName() Name for the Primefaces FileUpload Filter.
 - 
getOrderpublic int getOrder() Order for the PrimeFaces FileUpload Filter.
 - 
getThresholdSizepublic DataSize getThresholdSize() Maximum file size in bytes to keep uploaded files in memory. If a file exceeds this limit, it’ll be temporarily written to disk.
 - 
getUploadDirectorypublic String getUploadDirectory() Disk repository path to keep temporary files that exceeds the threshold size. By default it is System.getProperty("java.io.tmpdir")
 - 
setNamepublic void setName(String name) Name for the Primefaces FileUpload Filter.
 - 
setOrderpublic void setOrder(int order) Order for the PrimeFaces FileUpload Filter.
 - 
setThresholdSizepublic void setThresholdSize(DataSize thresholdSize) Maximum file size in bytes to keep uploaded files in memory. If a file exceeds this limit, it’ll be temporarily written to disk.
 - 
setUploadDirectorypublic void setUploadDirectory(String uploadDirectory) Disk repository path to keep temporary files that exceeds the threshold size. By default it is System.getProperty("java.io.tmpdir")
 - 
canEqualprotected boolean canEqual(Object other) 
 
- 
 
-