Package com.flowable.core.idm.api.event
Interface FlowableUserPresenceChangeEvent
- All Superinterfaces:
org.flowable.common.engine.api.delegate.event.FlowableEvent
- All Known Implementing Classes:
FlowableUserPresenceChangeEventImpl
public interface FlowableUserPresenceChangeEvent
extends org.flowable.common.engine.api.delegate.event.FlowableEvent
Event fired when the presence information of a user has been changed.
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and Type Method Description java.lang.String
getPresence()
The newly changed presence state of the user.java.lang.String
getUserId()
The id of the user whose presence has been changed.
-
Method Details
-
getUserId
java.lang.String getUserId()The id of the user whose presence has been changed.- Returns:
- the id of the user whose presence has been changed
-
getPresence
java.lang.String getPresence()The newly changed presence state of the user.- Returns:
- the new presence of the user
-