|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.util.EventObject net.sf.asterisk.manager.event.ManagerEvent net.sf.asterisk.manager.event.DialEvent
public class DialEvent
A dial event is triggered whenever a phone attempts to dial someone.
This event is implemented in apps/app_dial.c
.
Available since Asterisk 1.2.
Field Summary |
---|
Fields inherited from class java.util.EventObject |
---|
source |
Constructor Summary | |
---|---|
DialEvent(java.lang.Object source)
Creates a new DialEvent. |
Method Summary | |
---|---|
java.lang.String |
getCallerId()
Returns the Caller*ID. |
java.lang.String |
getCallerIdName()
Returns the Caller*ID Name. |
java.lang.String |
getDestination()
Returns the name of the destination channel. |
java.lang.String |
getDestUniqueId()
Returns the unique ID of the distination channel. |
java.lang.String |
getSrc()
Returns the name of the source channel. |
java.lang.String |
getSrcUniqueId()
Returns the unique ID of the source channel. |
void |
setCallerId(java.lang.String callerId)
Sets the caller*ID. |
void |
setCallerIdName(java.lang.String callerIdName)
Sets the Caller*Id Name. |
void |
setDestination(java.lang.String destination)
Sets the name of the destination channel. |
void |
setDestUniqueId(java.lang.String destUniqueId)
Sets the unique ID of the distination channel. |
void |
setSrc(java.lang.String src)
Sets the name of the source channel. |
void |
setSrcUniqueId(java.lang.String srcUniqueId)
Sets the unique ID of the source channel. |
Methods inherited from class net.sf.asterisk.manager.event.ManagerEvent |
---|
getDateReceived, getPrivilege, setDateReceived, setPrivilege, toString |
Methods inherited from class java.util.EventObject |
---|
getSource |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public DialEvent(java.lang.Object source)
source
- Method Detail |
---|
public java.lang.String getSrc()
public void setSrc(java.lang.String src)
src
- the name of the source channel.public java.lang.String getDestination()
public void setDestination(java.lang.String destination)
destination
- the name of the destination channel.public java.lang.String getCallerId()
public void setCallerId(java.lang.String callerId)
callerId
- the caller*ID.public java.lang.String getCallerIdName()
public void setCallerIdName(java.lang.String callerIdName)
callerIdName
- the Caller*Id Name to set.public java.lang.String getSrcUniqueId()
public void setSrcUniqueId(java.lang.String srcUniqueId)
srcUniqueId
- the unique ID of the source channel.public java.lang.String getDestUniqueId()
public void setDestUniqueId(java.lang.String destUniqueId)
destUniqueId
- the unique ID of the distination channel.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |