Interface Event
-
- All Superinterfaces:
Message
- All Known Subinterfaces:
ApplicationMoveFailed
,ApplicationReplaced
,BridgeAttendedTransfer
,BridgeBlindTransfer
,BridgeCreated
,BridgeDestroyed
,BridgeMerged
,BridgeVideoSourceChanged
,ChannelCallerId
,ChannelConnectedLine
,ChannelCreated
,ChannelDestroyed
,ChannelDialplan
,ChannelDtmfReceived
,ChannelEnteredBridge
,ChannelHangupRequest
,ChannelHold
,ChannelLeftBridge
,ChannelStateChange
,ChannelTalkingFinished
,ChannelTalkingStarted
,ChannelUnhold
,ChannelUserevent
,ChannelVarset
,ContactStatusChange
,DeviceStateChanged
,Dial
,EndpointStateChange
,PeerStatusChange
,PlaybackContinuing
,PlaybackFinished
,PlaybackStarted
,RecordingFailed
,RecordingFinished
,RecordingStarted
,StasisEnd
,StasisStart
,TextMessageReceived
public interface Event extends Message
Generated by: JavaInterface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getApplication()
Name of the application receiving the event.java.util.Date
getTimestamp()
Time at which this event was created.void
setApplication(java.lang.String val)
void
setTimestamp(java.util.Date val)
-
Methods inherited from interface ch.loway.oss.ari4java.generated.models.Message
getAsterisk_id, getType, setAsterisk_id, setType
-
-
-
-
Method Detail
-
setTimestamp
void setTimestamp(java.util.Date val)
- Parameters:
val
- Time at which this event was created.- Since:
- ARI_0_0_1
-
getTimestamp
java.util.Date getTimestamp()
Time at which this event was created.- Returns:
- Date
- Since:
- ARI_0_0_1
-
setApplication
void setApplication(java.lang.String val)
- Parameters:
val
- Name of the application receiving the event.- Since:
- ARI_0_0_1
-
getApplication
java.lang.String getApplication()
Name of the application receiving the event.- Returns:
- String
- Since:
- ARI_0_0_1
-
-