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 Integer
batchSize
protected boolean
createInitialFolder
protected boolean
mergeInitialFolder
protected Integer
nbThreads
protected String
processedPath
protected String
sourcePath
protected String
targetPath
protected Integer
transactionTimeout
protected boolean
update
protected boolean
useXMLMapping
-
Constructor Summary
Constructors Constructor Description ImporterConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getBatchSize()
Integer
getNbThreads()
String
getProcessedPath()
String
getSourcePath()
String
getTargetPath()
Integer
getTransactionTimeout()
boolean
isCreateInitialFolder()
boolean
isMergeInitialFolder()
boolean
isUpdate()
void
setBatchSize(Integer batchSize)
void
setCreateInitialFolder(boolean createInitialFolder)
void
setMergeInitialFolder(boolean mergeInitialFolder)
void
setNbThreads(Integer nbThreads)
void
setProcessedPath(String processedPath)
void
setSourcePath(String sourcePath)
void
setTargetPath(String tagetPath)
void
setTransactionTimeout(Integer transactionTimeout)
void
setUpdate(boolean update)
void
setUseXMLMapping(boolean useXMLMapping)
boolean
useXMLMapping()
-
-
-
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)
-
-