Uses of Class
com.avoka.fc.core.entity.UserAuthEvent
-
Packages that use UserAuthEvent 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.sysevent -
-
Uses of UserAuthEvent in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return UserAuthEvent Modifier and Type Method Description UserAuthEvent
UserAuthEventDao. getLastUserAuthEvent(UserAccount userAccount, Portal portal)
Return the last user auth event for the given user and portal.UserAuthEvent
UserAuthEventDao. getUserAuthEvent(String sessionId, Portal portal, String ipAddress)
Returns the last UserAuthEvent for a given sessionID, and ipAddress made within the session timeout for the portal.Methods in com.avoka.fc.core.dao that return types with arguments of type UserAuthEvent Modifier and Type Method Description List<UserAuthEvent>
UserAuthEventDao. getUserAuthEventList(String clientId, String loginName, String eventType, Portal portal, String ipAddress, Date startDate, Date endDate)
Return the user authentication event list for the given search criteria.List<UserAuthEvent>
UserAuthEventDao. getUserAuthEventList(String clientId, String loginName, String eventType, Portal portal, String ipAddress, Date startDate, Date endDate, int pageSize, int fetchLimit)
Return the user authentication event list for the given search criteria.List<UserAuthEvent>
UserAuthEventDao. getUserAuthEventsForUser(UserAccount userAccount, int fetchLimit)
Return the user authentication events for the given user, ordered by event time descending. -
Uses of UserAuthEvent in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type UserAuthEvent Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<UserAuthEvent>>
_Portal. USER_AUTH_EVENTS
Provides the 'USER_AUTH_EVENTS' property.static org.apache.cayenne.exp.Property<List<UserAuthEvent>>
_UserAccount. USER_AUTH_EVENTS
Provides the 'USER_AUTH_EVENTS' property.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type UserAuthEvent Modifier and Type Method Description List<UserAuthEvent>
_Portal. getUserAuthEvents()
Return the UserAuthEvents.List<UserAuthEvent>
_UserAccount. getUserAuthEvents()
Return the UserAuthEvents.Methods in com.avoka.fc.core.entity.auto with parameters of type UserAuthEvent Modifier and Type Method Description void
_Portal. addToUserAuthEvents(UserAuthEvent obj)
Add the UserAuthEvents object.void
_UserAccount. addToUserAuthEvents(UserAuthEvent obj)
Add the UserAuthEvents object.void
_Portal. removeFromUserAuthEvents(UserAuthEvent obj)
Remove the UserAuthEvents object.void
_UserAccount. removeFromUserAuthEvents(UserAuthEvent obj)
Remove the UserAuthEvents object. -
Uses of UserAuthEvent in com.avoka.fc.core.sysevent
Methods in com.avoka.fc.core.sysevent with parameters of type UserAuthEvent Modifier and Type Method Description void
SysEventBuilder.ISysEventBuilder. addUserAuth(UserAuthEvent uae)
Registers the User Auth Event for inclusion in the system event messages.
-