Class ImporterConfig
- java.lang.Object
-
- org.nuxeo.ecm.platform.scanimporter.service.ImporterConfig
-
public class ImporterConfig extends Object
XMap Descriptor for importer config- Author:
- Thierry Delprat
-
-
Field Summary
Fields Modifier and Type Field Description protected IntegerbatchSizeprotected booleancreateInitialFolderprotected booleanmergeInitialFolderprotected IntegernbThreadsprotected StringprocessedPathprotected StringsourcePathprotected StringtargetPathprotected IntegertransactionTimeoutprotected booleanupdateprotected booleanuseXMLMapping
-
Constructor Summary
Constructors Constructor Description ImporterConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetBatchSize()IntegergetNbThreads()StringgetProcessedPath()StringgetSourcePath()StringgetTargetPath()IntegergetTransactionTimeout()booleanisCreateInitialFolder()booleanisMergeInitialFolder()booleanisUpdate()voidsetBatchSize(Integer batchSize)voidsetCreateInitialFolder(boolean createInitialFolder)voidsetMergeInitialFolder(boolean mergeInitialFolder)voidsetNbThreads(Integer nbThreads)voidsetProcessedPath(String processedPath)voidsetSourcePath(String sourcePath)voidsetTargetPath(String tagetPath)voidsetTransactionTimeout(Integer transactionTimeout)voidsetUpdate(boolean update)voidsetUseXMLMapping(boolean useXMLMapping)booleanuseXMLMapping()
-
-
-
Field Detail
-
sourcePath
protected String sourcePath
-
processedPath
protected String processedPath
-
nbThreads
protected Integer nbThreads
-
batchSize
protected Integer batchSize
-
transactionTimeout
protected Integer transactionTimeout
-
targetPath
protected String targetPath
-
useXMLMapping
protected boolean useXMLMapping
-
createInitialFolder
protected boolean createInitialFolder
-
mergeInitialFolder
protected boolean mergeInitialFolder
-
update
protected boolean update
-
-
Method Detail
-
getSourcePath
public String getSourcePath()
-
getProcessedPath
public String getProcessedPath()
-
getNbThreads
public Integer getNbThreads()
-
getBatchSize
public Integer getBatchSize()
-
getTransactionTimeout
public Integer getTransactionTimeout()
- Since:
- 5.9.4
-
getTargetPath
public String getTargetPath()
-
useXMLMapping
public boolean useXMLMapping()
-
isCreateInitialFolder
public boolean isCreateInitialFolder()
-
isUpdate
public boolean isUpdate()
-
setCreateInitialFolder
public void setCreateInitialFolder(boolean createInitialFolder)
-
isMergeInitialFolder
public boolean isMergeInitialFolder()
-
setMergeInitialFolder
public void setMergeInitialFolder(boolean mergeInitialFolder)
-
setSourcePath
public void setSourcePath(String sourcePath)
-
setProcessedPath
public void setProcessedPath(String processedPath)
-
setNbThreads
public void setNbThreads(Integer nbThreads)
-
setBatchSize
public void setBatchSize(Integer batchSize)
-
setTransactionTimeout
public void setTransactionTimeout(Integer transactionTimeout)
- Since:
- 5.9.4
-
setTargetPath
public void setTargetPath(String tagetPath)
-
setUseXMLMapping
public void setUseXMLMapping(boolean useXMLMapping)
-
setUpdate
public void setUpdate(boolean update)
-
-