com.github.cafdataprocessing.workers.document.BulkDocumentTask Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2016-2024 Open Text.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.cafdataprocessing.workers.document;
import com.github.cafdataprocessing.workers.document.tasks.AbstractTask;
import com.github.workerframework.api.WorkerTask;
import com.github.cafdataprocessing.workers.document.model.Document;
import java.util.List;
public final class BulkDocumentTask
{
private final WorkerTask workerTask;
private final AbstractTask documentWorkerTask;
private List documents;
public BulkDocumentTask(final WorkerTask workerTask, final AbstractTask documentWorkerTask)
{
this.workerTask = workerTask;
this.documentWorkerTask = documentWorkerTask;
this.documents = null;
}
public WorkerTask getWorkerTask()
{
return workerTask;
}
public AbstractTask getDocumentWorkerTask()
{
return documentWorkerTask;
}
public List getDocuments()
{
return documents;
}
public void setDocuments(final List documents)
{
this.documents = documents;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy