Uses of Class
com.avoka.fc.core.entity.EventInbox
Package
Description
Provides the Data Access Objects used by SmartForm Manager.
Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.
Provides the SmartForm Manager service classes.
Provides web automated test services.
-
Uses of EventInbox in com.avoka.fc.core.dao
Modifier and TypeMethodDescriptionEventInboxDao.getEventInboxForId
(Long id) Return the EventInbox entity for the given EventInbox id. -
Uses of EventInbox in com.avoka.fc.core.entity.auto
Modifier and TypeFieldDescriptionstatic final org.apache.cayenne.exp.Property
<EventInbox> _ErrorLog.EVENT_INBOX
Provides the 'EVENT_INBOX' property.static final org.apache.cayenne.exp.Property
<List<EventInbox>> _ServiceDefinition.EVENT_INBOX
Provides the 'EVENT_INBOX' property.static final org.apache.cayenne.exp.Property
<List<EventInbox>> _UserAccount.EVENT_INBOX
Provides the 'EVENT_INBOX' property.Modifier and TypeMethodDescription_ServiceDefinition.getEventInbox()
Return the EventInbox._UserAccount.getEventInbox()
Return the EventInbox.Modifier and TypeMethodDescriptionvoid
_ServiceDefinition.addToEventInbox
(EventInbox obj) Add the EventInbox object.void
_UserAccount.addToEventInbox
(EventInbox obj) Add the EventInbox object.void
_ServiceDefinition.removeFromEventInbox
(EventInbox obj) Remove the EventInbox object.void
_UserAccount.removeFromEventInbox
(EventInbox obj) Remove the EventInbox object.void
_ErrorLog.setEventInbox
(EventInbox eventInbox) Set the EventInbox. -
Uses of EventInbox in com.avoka.fc.core.service
Modifier and TypeMethodDescriptionEventInboxService.createInboxEvent
(ServiceDefinition serviceDefinition, String eventTopic, String eventPartition, String eventOffset, String key, String payload) create a new EventInbox entity.Modifier and TypeMethodDescriptionvoid
EventInboxService.updateEventInboxToDelivered
(EventInbox eventInbox) update an eventInbox with delivered status.void
EventInboxService.updateEventInboxToFailed
(EventInbox eventInbox, String bodyContent) update an eventInbox with Failed status.void
EventInboxService.updateEventInboxToInProcess
(EventInbox eventInbox) update an eventInbox with InProcess status.void
EventInboxService.updateEventInboxToInQueue
(EventInbox eventInbox) update an eventInbox with InQueue status. -
Uses of EventInbox in com.avoka.fc.core.service.test
Modifier and TypeMethodDescriptionMockEntityService.createEventInbox
(ServiceDefinition serviceDefinition, UserAccount userAccount) Create a mock Event Inbox.