Uses of Class
com.avoka.fc.core.entity.EventInbox
Packages that use 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
Methods in com.avoka.fc.core.dao that return EventInboxModifier and TypeMethodDescriptionEventInboxDao.getEventInboxForId
(Long id) Return the EventInbox entity for the given EventInbox id. -
Uses of EventInbox in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type EventInboxModifier 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.Methods in com.avoka.fc.core.entity.auto that return EventInboxMethods in com.avoka.fc.core.entity.auto that return types with arguments of type EventInboxModifier and TypeMethodDescription_ServiceDefinition.getEventInbox()
Return the EventInbox._UserAccount.getEventInbox()
Return the EventInbox.Methods in com.avoka.fc.core.entity.auto with parameters of type EventInboxModifier 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
Methods in com.avoka.fc.core.service that return EventInboxModifier and TypeMethodDescriptionEventInboxService.createInboxEvent
(ServiceDefinition serviceDefinition, String eventTopic, String eventPartition, String eventOffset, String key, String payload) create a new EventInbox entity.Methods in com.avoka.fc.core.service with parameters of type EventInboxModifier 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
Methods in com.avoka.fc.core.service.test that return EventInboxModifier and TypeMethodDescriptionMockEntityService.createEventInbox
(ServiceDefinition serviceDefinition, UserAccount userAccount) Create a mock Event Inbox.