Interface IResolvedAttachmentItem
-
- All Superinterfaces:
IAttachmentItemResolutionErrorProviding
- All Known Implementing Classes:
ResolvedAttachmentItem
public interface IResolvedAttachmentItem extends IAttachmentItemResolutionErrorProviding
Represents the result when resolving the attachments referenced by a singleAttachmentItem
.- Since:
- 8.1.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttachmentItem
getAttachmentItem()
List<IResolvedAttachment>
getIndividualAttachments()
Retrieves all attachments that were found for the attachment item.-
Methods inherited from interface de.xima.fc.interfaces.workflow.retval.IAttachmentItemResolutionErrorProviding
getErrors, getErrors, getErrorsAttachmentCountReducedTozeroByFilterOptions, getErrorsAttachmentFilterDoesNotMatch, getErrorsCannotProcessAttachmentItem, getErrorsCannotProcessAttachmentList, getErrorsDatabaseError, getErrorsFileSystemError, getErrorsNodeDoesNotExist, getErrorsNodeDoesNotProvideAttachments, getErrorsNodeNotExecuted, getErrorsUploadFieldDoesNotExist, getErrorsUploadFieldDoesNotProvideAttachments, isHasError
-
-
-
-
Method Detail
-
getAttachmentItem
@Nonnull AttachmentItem getAttachmentItem()
- Returns:
- The attachment item that was resolved.
-
getIndividualAttachments
@Nonnull List<IResolvedAttachment> getIndividualAttachments()
Retrieves all attachments that were found for the attachment item. This is done on a best-effort basis. When theerrors
are not empty, this list may contain only some of the attachments referenced by the attachment item.- Returns:
- A list of all attachments that were found for the attachment item.
-
-