public interface DirectoryInput extends QualifiedContent
QualifiedContent
of type directory.
This means the QualifiedContent.getFile()
is the root directory containing the content.
This also contains incremental data if the transform is in incremental mode through
getChangedFiles()
.
For a transform to run in incremental mode:
Transform.isIncremental()
must return true
Transform.transform(Context, Collection, Collection, TransformOutputProvider, boolean)
must be true
.getChangedFiles()
will not contain any
information (it will not contain the list of all the files with state
Status.NOTCHANGED
.)
When a root level directory is removed, and incremental mode is on, the instance will receive
a DirectoryInput
instance for the removed folder, but QualifiedContent.getFile()
will return a directory that does not exist. In this case, the transform should prcess this
as a removed input.
QualifiedContent.ContentType, QualifiedContent.DefaultContentType, QualifiedContent.Scope, QualifiedContent.ScopeType
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.io.File,Status> |
getChangedFiles()
Returns the changed files.
|
getContentTypes, getFile, getName, getScopes
@NonNull java.util.Map<java.io.File,Status> getChangedFiles()