Uses of Class
com.avoka.fc.core.entity.RequiredAttachment
Packages that use RequiredAttachment
Package
Description
Provides the Data Access Objects used by SmartForm Manager.
Provides the SmartForm Manager entity classes.
Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.
Provides the SmartForm Manager service classes.
-
Uses of RequiredAttachment in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return RequiredAttachmentModifier and TypeMethodDescriptionRequiredAttachmentDao.createOrUpdateManuallySubmittedRequiredAttachment
(Submission submission, String attachmentName, String mandatoryStatus) Create or update a manually submitted RequiredAttachment record for the submission with the name and mandatory status.RequiredAttachmentDao.createOrUpdateRequiredAttachment
(Submission submission, RequiredAttachmentMetadata metadata) Create or update a RequiredAttachment record for the submission with the specified required attachment metadata.RequiredAttachmentDao.createOrUpdateRequiredAttachment
(Submission submission, String attachmentName) Create or update a RequiredAttachment record for the submission with the specified required attachment name.RequiredAttachmentDao.getRequiredAttachmentForPK
(Object id) Return the required attachment for the given idRequiredAttachmentDao.getRequiredAttachmentForSubmission
(Submission submission, String attachmentName) Return the required attachment for the given submission and attachment name.Methods in com.avoka.fc.core.dao that return types with arguments of type RequiredAttachmentModifier and TypeMethodDescriptionSubmissionDao.getMandatoryRequiredAttachments
(Submission submission) Return the list of mandatory required attachments for the given submissionSubmissionDao.getOptionalRequiredAttachments
(Submission submission) Return the list of optional required attachments for the given submissionMethods in com.avoka.fc.core.dao with parameters of type RequiredAttachmentModifier and TypeMethodDescriptionSubmissionDao.copyAttachmentToSubmission
(Attachment attachment, Submission targetSubmission, RequiredAttachment targetRA) Copy the attachment to the specified submission, cloning the file upload data.void
SubmissionDao.copyRequiredAttachmentToSubmission
(RequiredAttachment requiredAttachment, Submission targetSubmission) Copy the required attachment to the specified submission, cloning the associated attachment and file data.void
SubmissionDao.copyRequiredAttachmentToSubmission
(RequiredAttachment requiredAttachment, Submission targetSubmission, Document targetXmlDoc) Copy the required attachment to the specified submission, cloning the associated attachment and file data. -
Uses of RequiredAttachment in com.avoka.fc.core.entity
Methods in com.avoka.fc.core.entity that return types with arguments of type RequiredAttachmentModifier and TypeMethodDescriptionSubmission.getRequiredAttachmentMap()
Return a map of submission required attachments (attachment name/required attachment). -
Uses of RequiredAttachment in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type RequiredAttachmentModifier and TypeFieldDescriptionstatic final org.apache.cayenne.exp.Property<RequiredAttachment>
_Attachment.REQUIRED_ATTACHMENT
Provides the 'REQUIRED_ATTACHMENT' property.static final org.apache.cayenne.exp.Property<List<RequiredAttachment>>
_Submission.REQUIRED_ATTACHMENTS
Provides the 'REQUIRED_ATTACHMENTS' property.Methods in com.avoka.fc.core.entity.auto that return RequiredAttachmentModifier and TypeMethodDescription_Attachment.getRequiredAttachment()
Return the RequiredAttachment.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type RequiredAttachmentModifier and TypeMethodDescription_Submission.getRequiredAttachments()
Return the RequiredAttachments.Methods in com.avoka.fc.core.entity.auto with parameters of type RequiredAttachmentModifier and TypeMethodDescriptionvoid
_Submission.addToRequiredAttachments
(RequiredAttachment obj) Add the RequiredAttachments object.void
_Submission.removeFromRequiredAttachments
(RequiredAttachment obj) Remove the RequiredAttachments object.void
_Attachment.setRequiredAttachment
(RequiredAttachment requiredAttachment) Set the RequiredAttachment. -
Uses of RequiredAttachment in com.avoka.fc.core.service
Methods in com.avoka.fc.core.service with parameters of type RequiredAttachmentModifier and TypeMethodDescriptionvoid
AttachmentService.saveFileForRequiredAttachment
(String fileName, byte[] fileData, String contentType, String description, RequiredAttachment requiredAttachment, String attachmentKey) Save the uploaded fileItem for form submission requiredAttachmet.void
AttachmentService.saveFileForRequiredAttachment
(org.apache.commons.fileupload.FileItem fileItem, String description, RequiredAttachment requiredAttachment) Save the uploaded fileItem for form submission requiredAttachmet.