Uses of Class
com.avoka.fc.core.entity.SubmissionAsyncMsg
-
Packages that use SubmissionAsyncMsg 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.submission Provides submission service implementations. -
-
Uses of SubmissionAsyncMsg in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return SubmissionAsyncMsg Modifier and Type Method Description SubmissionAsyncMsg
SubmissionAsyncMsgDao. getAsyncMsgForID(Object id)
Return the submission async message for the given primary key.SubmissionAsyncMsg
SubmissionAsyncMsgDao. getAsyncMsgForKey(String msgKey)
Return the submission async message for the given msg key.Methods in com.avoka.fc.core.dao that return types with arguments of type SubmissionAsyncMsg Modifier and Type Method Description List<SubmissionAsyncMsg>
SubmissionAsyncMsgDao. getReadyAsyncMsgsForExpiry()
Return list of 'Ready' status async messages which have expiredList<SubmissionAsyncMsg>
SubmissionAsyncMsgDao. getReadyAsyncMsgsForTopic(String topic, int fetchLimit)
Return list of 'Ready' status async messages for given topic. -
Uses of SubmissionAsyncMsg in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type SubmissionAsyncMsg Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<SubmissionAsyncMsg>>
_Submission. ASYNC_MSGS
Provides the 'ASYNC_MSGS' property.static org.apache.cayenne.exp.Property<SubmissionAsyncMsg>
_SubmissionAsyncMsgBody. SUBMISSION_ASYNC_MSG
Provides the 'SUBMISSION_ASYNC_MSG' property.Methods in com.avoka.fc.core.entity.auto that return SubmissionAsyncMsg Modifier and Type Method Description SubmissionAsyncMsg
_SubmissionAsyncMsgBody. getSubmissionAsyncMsg()
Return the SubmissionAsyncMsg.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type SubmissionAsyncMsg Modifier and Type Method Description List<SubmissionAsyncMsg>
_Submission. getAsyncMsgs()
Return the AsyncMsgs.Methods in com.avoka.fc.core.entity.auto with parameters of type SubmissionAsyncMsg Modifier and Type Method Description void
_Submission. addToAsyncMsgs(SubmissionAsyncMsg obj)
Add the AsyncMsgs object.void
_Submission. removeFromAsyncMsgs(SubmissionAsyncMsg obj)
Remove the AsyncMsgs object.void
_SubmissionAsyncMsgBody. setSubmissionAsyncMsg(SubmissionAsyncMsg submissionAsyncMsg)
Set the SubmissionAsyncMsg. -
Uses of SubmissionAsyncMsg in com.avoka.fc.core.service.submission
Methods in com.avoka.fc.core.service.submission that return SubmissionAsyncMsg Modifier and Type Method Description SubmissionAsyncMsg
AsyncMessageService. createRequestMsg(Submission submission, String topic, String requestMsg, Date expiryTime)
Create a request message with the status of 'Ready'.Methods in com.avoka.fc.core.service.submission with parameters of type SubmissionAsyncMsg Modifier and Type Method Description void
AsyncMessageService. setExpiredStatus(SubmissionAsyncMsg asyncMsg)
Set the expired status on the given message.void
AsyncMessageService. setReceivedStatus(SubmissionAsyncMsg asyncMsg)
Set the message received status.void
AsyncMessageService. setResponseMsg(SubmissionAsyncMsg asyncMsg, String responseMsg)
Set the message response and update status to "Completed".Method parameters in com.avoka.fc.core.service.submission with type arguments of type SubmissionAsyncMsg Modifier and Type Method Description void
AsyncMessageService. setExpiredStatus(List<SubmissionAsyncMsg> asyncMsgList)
Set the expired status on the given list of messages.
-