Uses of Class
com.avoka.fc.core.entity.FileUpload
-
Packages that use FileUpload Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.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.com.avoka.fc.core.service.storage Provides submission data storage service implementations. -
-
Uses of FileUpload in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return FileUpload Modifier and Type Method Description FileUpload
FileUploadDao. getFileUpload(Object id)
Return the file upload with the specified OIDMethods in com.avoka.fc.core.dao that return types with arguments of type FileUpload Modifier and Type Method Description List<FileUpload>
FileUploadDao. getFileUploadsForSubmission(Submission submission)
Return the list of file uploads for a submissionList<FileUpload>
FileUploadDao. getFileUploadsForVirusScan()
Return the list of file uploads that need to be virus scannedMethods in com.avoka.fc.core.dao with parameters of type FileUpload Modifier and Type Method Description byte[]
SubmissionDataDao. getAttachment(FileUpload fileUpload)
Gets the attachment file data. -
Uses of FileUpload in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type FileUpload Modifier and Type Field Description static org.apache.cayenne.exp.Property<FileUpload>
_Attachment. FILE_UPLOAD
Provides the 'FILE_UPLOAD' property.static org.apache.cayenne.exp.Property<FileUpload>
_FileUploadData. FILE_UPLOAD
Provides the 'FILE_UPLOAD' property.static org.apache.cayenne.exp.Property<List<FileUpload>>
_Submission. FILE_UPLOADS
Provides the 'FILE_UPLOADS' property.static org.apache.cayenne.exp.Property<List<FileUpload>>
_UserAccount. FILE_UPLOADS
Provides the 'FILE_UPLOADS' property.Methods in com.avoka.fc.core.entity.auto that return FileUpload Modifier and Type Method Description FileUpload
_Attachment. getFileUpload()
Return the FileUpload.FileUpload
_FileUploadData. getFileUpload()
Return the FileUpload.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type FileUpload Modifier and Type Method Description List<FileUpload>
_Submission. getFileUploads()
Return the FileUploads.List<FileUpload>
_UserAccount. getFileUploads()
Return the FileUploads.Methods in com.avoka.fc.core.entity.auto with parameters of type FileUpload Modifier and Type Method Description void
_Submission. addToFileUploads(FileUpload obj)
Add the FileUploads object.void
_UserAccount. addToFileUploads(FileUpload obj)
Add the FileUploads object.void
_Submission. removeFromFileUploads(FileUpload obj)
Remove the FileUploads object.void
_UserAccount. removeFromFileUploads(FileUpload obj)
Remove the FileUploads object.void
_Attachment. setFileUpload(FileUpload fileUpload)
Set the FileUpload.void
_FileUploadData. setFileUpload(FileUpload fileUpload)
Set the FileUpload. -
Uses of FileUpload in com.avoka.fc.core.service
Methods in com.avoka.fc.core.service with parameters of type FileUpload Modifier and Type Method Description void
IRemoteAuditService. auditDeliveredAttachment(FileUpload fileUpload)
Audit the delivered attachment.void
IRemoteAuditService. auditSubmittedAttachment(FileUpload fileUpload)
Audit the attachment.boolean
ISubmissionDataStorageService. deleteAttachmentData(FileUpload fileUpload)
Delete attachment data.boolean
AttachmentService. deleteFileUpload(FileUpload fileUpload)
Delete the file upload object.byte[]
ISubmissionDataStorageService. getAttachment(FileUpload fileUpload)
Gets the attachment file data.void
ISubmissionDataStorageService. storeAttachment(Submission submission, FileUpload fileUpload, byte[] fileData)
Store the submission attachment file data.void
SubmissionStatusService. updateFileUploadVirusStatusManually(FileUpload fileUpload, String newVirusStatus)
Update the attachment virus status manually by specifying the new status. -
Uses of FileUpload in com.avoka.fc.core.service.storage
Methods in com.avoka.fc.core.service.storage with parameters of type FileUpload Modifier and Type Method Description boolean
AmazonKMSSubmissionDataStorageService. deleteAttachmentData(FileUpload fileUpload)
Deprecated.boolean
AmazonS3SubmissionDataStorageService. deleteAttachmentData(FileUpload fileUpload)
Deprecated.boolean
AwsSubmissionDataStorageService. deleteAttachmentData(FileUpload fileUpload)
boolean
CloudSubmissionDataStorageService. deleteAttachmentData(FileUpload fileUpload)
boolean
DatabaseSubmissionDataStorageService. deleteAttachmentData(FileUpload fileUpload)
boolean
FileSystemSubmissionDataStorageService. deleteAttachmentData(FileUpload fileUpload)
Delete attachment data.boolean
HybridCloudSubmissionDataStorageService. deleteAttachmentData(FileUpload fileUpload)
byte[]
AmazonKMSSubmissionDataStorageService. getAttachment(FileUpload fileUpload)
Deprecated.byte[]
AmazonS3SubmissionDataStorageService. getAttachment(FileUpload fileUpload)
Deprecated.byte[]
AwsSubmissionDataStorageService. getAttachment(FileUpload fileUpload)
byte[]
CloudSubmissionDataStorageService. getAttachment(FileUpload fileUpload)
byte[]
DatabaseSubmissionDataStorageService. getAttachment(FileUpload fileUpload)
byte[]
FileSystemSubmissionDataStorageService. getAttachment(FileUpload fileUpload)
Gets the attachment file data.byte[]
HybridCloudSubmissionDataStorageService. getAttachment(FileUpload fileUpload)
void
AmazonKMSSubmissionDataStorageService. storeAttachment(Submission submission, FileUpload fileUpload, byte[] fileData)
Deprecated.void
AmazonS3SubmissionDataStorageService. storeAttachment(Submission submission, FileUpload fileUpload, byte[] fileData)
Deprecated.void
AwsSubmissionDataStorageService. storeAttachment(Submission submission, FileUpload fileUpload, byte[] fileData)
void
CloudSubmissionDataStorageService. storeAttachment(Submission submission, FileUpload fileUpload, byte[] fileData)
void
DatabaseSubmissionDataStorageService. storeAttachment(Submission submission, FileUpload fileUpload, byte[] fileData)
void
FileSystemSubmissionDataStorageService. storeAttachment(Submission submission, FileUpload fileUpload, byte[] fileData)
Store the submission attachment file data.void
HybridCloudSubmissionDataStorageService. storeAttachment(Submission submission, FileUpload fileUpload, byte[] fileData)
-