Uses of Interface
com.redwood.scheduler.api.model.JobFile
-
Packages that use JobFile Package Description com.redwood.scheduler.api.model Scheduler API - Modelcom.redwood.scheduler.api.model.compatibility_14 com.redwood.scheduler.api.model.interfaces Scheduler API - High level model interfaces.com.redwood.scheduler.api.usermessage -
-
Uses of JobFile in com.redwood.scheduler.api.model
Fields in com.redwood.scheduler.api.model with type parameters of type JobFile Modifier and Type Field Description static QueryObjectType<JobFile>
JobFile. TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.Methods in com.redwood.scheduler.api.model that return JobFile Modifier and Type Method Description JobFile
Job. createJobFile()
Create a newJobFile
linked to this object.JobFile
Job. createLinkedJobFile(JobFile jobFileToLink, String jobFileName, Long jobFileOrder)
Creates a JobFile that will be linked to another JobFile.JobFile
Export. getArchiveJobFile()
Get the ArchiveJobFile.JobFile
Import. getArchiveJobFile()
Get the ArchiveJobFile.JobFile
UserMessageAttachment. getJobFile()
Attempts to return the Job File that the attachment.JobFile
Job. getJobFileByFileOrder(Long fileOrder)
Get the JobFile by JobFileOrder.JobFile
Job. getJobFileByName(String name)
Get the JobFile by JobName.JobFile
SchedulerSession. getJobFileByUniqueId(Long uniqueId)
Get theJobFile
by UniqueId.JobFile
Exporter. writeToNewJobFile(Job job)
Export marked objects to a local job file that will be attached to the supplied job.Methods in com.redwood.scheduler.api.model that return types with arguments of type JobFile Modifier and Type Method Description RWIterable<JobFile>
Job. getJobFiles()
Get anRWIterable
over a collection ofJobFiles
, the collection will be ordered by FileOrder.Methods in com.redwood.scheduler.api.model with parameters of type JobFile Modifier and Type Method Description JobFile
Job. createLinkedJobFile(JobFile jobFileToLink, String jobFileName, Long jobFileOrder)
Creates a JobFile that will be linked to another JobFile.void
AbstractConcreteObjectCallback. handle(JobFile theJobFile)
void
ConcreteObjectCallback. handle(JobFile theJobFile)
void
Export. setArchiveJobFile(JobFile newArchiveJobFile)
Set the value for ArchiveJobFile.void
Import. setArchiveJobFile(JobFile newArchiveJobFile)
Set the value for ArchiveJobFile.void
JobParameter. setInValueFileParameter(JobFile jobFile)
This will set aJobFile
in a new instance of the interfaceFileParameter
.void
JobParameter. setInValueTableParameter(JobFile jobFile)
This will set the type of the TableParameter toFile
, and set the business key correctly to referencejobFile
.void
JobParameter. setOutValueFileParameter(JobFile jobFile)
This will set aJobFile
in a new instance of the interfaceFileParameter
.void
JobParameter. setOutValueTableParameter(JobFile jobFile)
This will set the type of the TableParameter toTable
, and set the business key correctly to referencejobFile
. -
Uses of JobFile in com.redwood.scheduler.api.model.compatibility_14
Methods in com.redwood.scheduler.api.model.compatibility_14 that return types with arguments of type JobFile Modifier and Type Method Description Iterator<JobFile>
JobComp. getJobFiles()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJob.getJobFiles()
instead. -
Uses of JobFile in com.redwood.scheduler.api.model.interfaces
Methods in com.redwood.scheduler.api.model.interfaces that return JobFile Modifier and Type Method Description JobFile
FileParameter. getJobFile()
AJobFile
that can be used to process the output file of a Job.Methods in com.redwood.scheduler.api.model.interfaces with parameters of type JobFile Modifier and Type Method Description OutputStream
FileParameterRuntime. getOutputStream(JobFile jobFile)
Get an OutputStream to write the Out content of an Out or InOut parameter to the specified (potentially partially populated, but not necessarily persisted) JobFile, and set the reference to it.OutputStream
FileParameterRuntime. getOutputStream(JobFile jobFile, Format format)
Get an OutputStream to write the Out content of an Out or InOut parameter to the specified (potentially partially populated, but not necessarily persisted) JobFile, and set the reference to it.OutputStream
FileParameterRuntime. getOutputStream(JobFile jobFile, String extension)
Get an OutputStream to write the Out content of an Out or InOut parameter to the specified (potentially partially populated, but not necessarily persisted) JobFile, and set the reference to it.RTXWriter
TableParameterRuntime. getRTXWriter(JobFile jobFile)
Get an RTXWriter to write the Out content of an Out or InOut parameter to the specified (potentially partially populated, but not necessarily persisted) JobFile, and set the reference to it. -
Uses of JobFile in com.redwood.scheduler.api.usermessage
Subinterfaces of JobFile in com.redwood.scheduler.api.usermessage Modifier and Type Interface Description interface
WritableJobFile
Extend the JobFile interface to allow writing in a limited case.
-