public class JobEntryCopyFiles extends JobEntryBase implements Cloneable, JobEntryInterface
| Modifier and Type | Field and Description |
|---|---|
boolean |
add_result_filesname |
boolean |
arg_from_previous |
boolean |
copy_empty_folders |
boolean |
create_destination_folder |
String[] |
destination_filefolder |
boolean |
destination_is_a_file |
boolean |
include_subfolders |
boolean |
overwrite_files |
boolean |
remove_source_files |
String[] |
source_filefolder |
String[] |
wildcard |
| Constructor and Description |
|---|
JobEntryCopyFiles() |
JobEntryCopyFiles(String n) |
| Modifier and Type | Method and Description |
|---|---|
void |
check(List<org.pentaho.di.core.CheckResultInterface> remarks,
JobMeta jobMeta,
org.pentaho.di.core.variables.VariableSpace space,
Repository repository,
org.pentaho.metastore.api.IMetaStore metaStore)
Allows JobEntry objects to check themselves for consistency
|
Object |
clone()
This method is called when a job entry is duplicated in Spoon.
|
boolean |
evaluates()
This method must return true if the job entry supports the true/false outgoing hops.
|
org.pentaho.di.core.Result |
execute(org.pentaho.di.core.Result previousResult,
int nr)
Execute the job entry.
|
String |
getXML()
This method is called by PDI whenever a job entry needs to serialize its settings to XML.
|
boolean |
isAddresultfilesname() |
boolean |
isArgFromPrevious() |
boolean |
isCopyEmptyFolders() |
boolean |
isCreateDestinationFolder() |
boolean |
isDestinationIsAFile() |
boolean |
isIncludeSubfolders() |
boolean |
isoverwrite_files() |
boolean |
isRemoveSourceFiles() |
void |
loadRep(Repository rep,
org.pentaho.metastore.api.IMetaStore metaStore,
org.pentaho.di.repository.ObjectId id_jobentry,
List<org.pentaho.di.core.database.DatabaseMeta> databases,
List<SlaveServer> slaveServers)
This method is called by PDI whenever a job entry needs to read its configuration from a PDI repository.
|
void |
loadXML(Node entrynode,
List<org.pentaho.di.core.database.DatabaseMeta> databases,
List<SlaveServer> slaveServers,
Repository rep,
org.pentaho.metastore.api.IMetaStore metaStore)
This method is called by PDI whenever a job entry needs to read its settings from XML.
|
void |
saveRep(Repository rep,
org.pentaho.metastore.api.IMetaStore metaStore,
org.pentaho.di.repository.ObjectId id_job)
This method is called by PDI whenever a job entry needs to save its settings to a PDI repository.
|
void |
setAddresultfilesname(boolean add_result_filesnamein) |
void |
setArgFromPrevious(boolean argfrompreviousin) |
void |
setCopyEmptyFolders(boolean copy_empty_foldersin) |
void |
setCreateDestinationFolder(boolean create_destination_folder) |
void |
setDestinationIsAFile(boolean destination_is_a_file) |
void |
setIncludeSubfolders(boolean include_subfoldersin) |
void |
setoverwrite_files(boolean overwrite_filesin) |
void |
setRemoveSourceFiles(boolean remove_source_filesin) |
check, clear, copyVariablesFrom, environmentSubstitute, environmentSubstitute, equals, exportResources, exportResources, fieldSubstitute, getAttribute, getAttributes, getAttributesMap, getBooleanValueOfVariable, getContainerObjectId, getDescription, getDialogClassName, getExtensionDataMap, getFilename, getHolderType, getLogChannel, getLogChannelId, getLogLevel, getMetaStore, getName, getObjectCopy, getObjectId, getObjectName, getObjectRevision, getObjectType, getParent, getParentJob, getParentVariableSpace, getPluginId, getRealFilename, getReferencedObjectDescriptions, getRegistrationDate, getRepository, getRepositoryDirectory, getResourceDependencies, getSQLStatements, getSQLStatements, getSQLStatements, getTypeDesc, getTypeId, getUsedDatabaseConnections, getVariable, getVariable, hasChanged, hasRepositoryReferences, initializeVariablesFrom, injectVariables, isBasic, isDebug, isDetailed, isDummy, isEvaluation, isForcingSeparateLogging, isFTP, isGatheringMetrics, isHTTP, isJob, isMail, isReferencedObjectEnabled, isRowlevel, isSFTP, isShell, isSpecial, isStart, isTransformation, isUnconditional, listVariables, loadReferencedObject, loadReferencedObject, loadRep, loadXML, loadXML, logBasic, logBasic, logDebug, logDebug, logDetailed, logDetailed, logError, logError, logError, logMinimal, logMinimal, logRowlevel, logRowlevel, lookupRepositoryReferences, parseRepositoryObjects, resetErrorsBeforeExecution, saveRep, setAttribute, setAttributes, setAttributesMap, setChanged, setChanged, setContainerObjectId, setDescription, setForcingSeparateLogging, setGatheringMetrics, setID, setLogLevel, setMetaStore, setName, setObjectId, setParentJob, setParentVariableSpace, setPluginId, setRepository, setTypeId, setVariable, shareVariablesWith, toStringgetClass, hashCode, notify, notifyAll, wait, wait, waitcheck, clear, exportResources, exportResources, getDescription, getDialogClassName, getFilename, getLogChannel, getName, getObjectId, getParentJob, getPluginId, getRealFilename, getReferencedObjectDescriptions, getResourceDependencies, getSQLStatements, getSQLStatements, getSQLStatements, getTypeId, getUsedDatabaseConnections, hasChanged, hasRepositoryReferences, isDummy, isEvaluation, isJob, isMail, isReferencedObjectEnabled, isShell, isSpecial, isStart, isTransformation, isUnconditional, loadReferencedObject, loadReferencedObject, loadRep, loadXML, lookupRepositoryReferences, resetErrorsBeforeExecution, saveRep, setChanged, setChanged, setDescription, setMetaStore, setName, setObjectId, setParentJob, setPluginId, setRepositorypublic boolean copy_empty_folders
public boolean arg_from_previous
public boolean overwrite_files
public boolean include_subfolders
public boolean add_result_filesname
public boolean remove_source_files
public boolean destination_is_a_file
public boolean create_destination_folder
public String[] source_filefolder
public String[] destination_filefolder
public String[] wildcard
public JobEntryCopyFiles(String n)
public JobEntryCopyFiles()
public Object clone()
JobEntryBaseclone in interface JobEntryInterfaceclone in class JobEntryBasepublic String getXML()
JobEntryBasegetXML in interface JobEntryInterfacegetXML in class JobEntryBasepublic void loadXML(Node entrynode, List<org.pentaho.di.core.database.DatabaseMeta> databases, List<SlaveServer> slaveServers, Repository rep, org.pentaho.metastore.api.IMetaStore metaStore) throws org.pentaho.di.core.exception.KettleXMLException
JobEntryInterfaceloadXML in interface JobEntryInterfaceloadXML in class JobEntryBaseentrynode - the top-level XML nodedatabases - the list of databasesslaveServers - the list of slave serversrep - the repository objectmetaStore - The metaStore to optionally load from.org.pentaho.di.core.exception.KettleXMLException - if any errors occur during the loading of the XMLpublic void loadRep(Repository rep, org.pentaho.metastore.api.IMetaStore metaStore, org.pentaho.di.repository.ObjectId id_jobentry, List<org.pentaho.di.core.database.DatabaseMeta> databases, List<SlaveServer> slaveServers) throws org.pentaho.di.core.exception.KettleException
JobEntryInterfaceloadRep in interface JobEntryInterfaceloadRep in class JobEntryBaserep - the repository objectmetaStore - the MetaStore to useid_jobentry - the id of the job entrydatabases - the list of databasesslaveServers - the list of slave serversorg.pentaho.di.core.exception.KettleException - if any errors occur during the loadpublic void saveRep(Repository rep, org.pentaho.metastore.api.IMetaStore metaStore, org.pentaho.di.repository.ObjectId id_job) throws org.pentaho.di.core.exception.KettleException
JobEntryInterfacesaveRep in interface JobEntryInterfacesaveRep in class JobEntryBaserep - the repositorymetaStore - the MetaStore to useid_job - the id_joborg.pentaho.di.core.exception.KettleException - if any errors occur during the savepublic org.pentaho.di.core.Result execute(org.pentaho.di.core.Result previousResult,
int nr)
throws org.pentaho.di.core.exception.KettleException
JobEntryInterfaceexecute in interface JobEntryInterfacepreviousResult - the previous resultnr - the number of rowsorg.pentaho.di.core.exception.KettleException - if any Kettle exceptions occurpublic void setCopyEmptyFolders(boolean copy_empty_foldersin)
public boolean isCopyEmptyFolders()
public void setoverwrite_files(boolean overwrite_filesin)
public boolean isoverwrite_files()
public void setIncludeSubfolders(boolean include_subfoldersin)
public boolean isIncludeSubfolders()
public void setAddresultfilesname(boolean add_result_filesnamein)
public boolean isAddresultfilesname()
public void setArgFromPrevious(boolean argfrompreviousin)
public boolean isArgFromPrevious()
public void setRemoveSourceFiles(boolean remove_source_filesin)
public boolean isRemoveSourceFiles()
public void setDestinationIsAFile(boolean destination_is_a_file)
public boolean isDestinationIsAFile()
public void setCreateDestinationFolder(boolean create_destination_folder)
public boolean isCreateDestinationFolder()
public void check(List<org.pentaho.di.core.CheckResultInterface> remarks, JobMeta jobMeta, org.pentaho.di.core.variables.VariableSpace space, Repository repository, org.pentaho.metastore.api.IMetaStore metaStore)
JobEntryBasecheck in interface JobEntryInterfacecheck in class JobEntryBaseremarks - List of CheckResult objects indicating consistency statusjobMeta - the metadata object for the job entryspace - the variable space to resolve string expressions with variables withrepository - the repository to load Kettle objects frommetaStore - the MetaStore to load common elements frompublic boolean evaluates()
JobEntryBaseevaluates in interface JobEntryInterfaceevaluates in class JobEntryBase