Uses of Class
com.avoka.fc.core.entity.RequiredAttachment
-
Packages that use RequiredAttachment Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity Provides the SmartForm Manager entity classes.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.service Provides the SmartForm Manager service classes. -
-
Uses of RequiredAttachment in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return RequiredAttachment Modifier and Type Method Description RequiredAttachment
RequiredAttachmentDao. createOrUpdateManuallySubmittedRequiredAttachment(Submission submission, String attachmentName, String mandatoryStatus)
Create or update a manually submitted RequiredAttachment record for the submission with the name and mandatory status.RequiredAttachment
RequiredAttachmentDao. createOrUpdateRequiredAttachment(Submission submission, RequiredAttachmentMetadata metadata)
Create or update a RequiredAttachment record for the submission with the specified required attachment metadata.RequiredAttachment
RequiredAttachmentDao. createOrUpdateRequiredAttachment(Submission submission, String attachmentName)
Create or update a RequiredAttachment record for the submission with the specified required attachment name.RequiredAttachment
RequiredAttachmentDao. getRequiredAttachmentForPK(Object id)
Return the required attachment for the given idRequiredAttachment
RequiredAttachmentDao. 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 RequiredAttachment Modifier and Type Method Description List<RequiredAttachment>
SubmissionDao. getMandatoryRequiredAttachments(Submission submission)
Return the list of mandatory required attachments for the given submissionList<RequiredAttachment>
SubmissionDao. getOptionalRequiredAttachments(Submission submission)
Return the list of optional required attachments for the given submissionMethods in com.avoka.fc.core.dao with parameters of type RequiredAttachment Modifier and Type Method Description Attachment
SubmissionDao. 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 RequiredAttachment Modifier and Type Method Description Map<String,RequiredAttachment>
Submission. 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 RequiredAttachment Modifier and Type Field Description static org.apache.cayenne.exp.Property<RequiredAttachment>
_Attachment. REQUIRED_ATTACHMENT
Provides the 'REQUIRED_ATTACHMENT' property.static 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 RequiredAttachment Modifier and Type Method Description RequiredAttachment
_Attachment. getRequiredAttachment()
Return the RequiredAttachment.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type RequiredAttachment Modifier and Type Method Description List<RequiredAttachment>
_Submission. getRequiredAttachments()
Return the RequiredAttachments.Methods in com.avoka.fc.core.entity.auto with parameters of type RequiredAttachment Modifier and Type Method Description void
_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 RequiredAttachment Modifier and Type Method Description void
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.
-