Skip to content

Commit

Permalink
Merge pull request asterisk-java#3 from danieldbower/master
Browse files Browse the repository at this point in the history
Fix property name difference in QueueEntryEvent
  • Loading branch information
srt committed Aug 7, 2011
2 parents ae3aff5 + 23556ff commit afea1c3
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions src/main/java/org/asteriskjava/manager/event/QueueEntryEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public class QueueEntryEvent extends ResponseEvent
private String uniqueId;
private String channel;
private String callerId;
private String callerIdNum;
private String callerIdName;
private String callerIdNum;
private Long wait;
Expand Down Expand Up @@ -115,24 +116,44 @@ public void setChannel(String channel)
this.channel = channel;
}

/**
/**
* Returns the the Caller*ID number of this entry.
*
* @return the the Caller*ID number of this entry.
*/
public String getCallerId()
public String getCallerId()
{
return callerId;
}
return callerId;
}

/**
* Sets the the Caller*ID number of this entry.
*
* @param callerId the the Caller*ID number of this entry.
*/
public void setCallerId(String callerId)
public void setCallerId(String callerId)
{
this.callerId = callerId;
}

/**
* Returns the the Caller*ID number of this entry. (Later Versions of Asterisk)
*
* @return the the Caller*ID number of this entry.
*/
public String getCallerIdNum()
{
return callerIdNum;
}

/**
* Sets the the Caller*ID number of this entry. (Later Versions of Asterisk)
*
* @param callerId the the Caller*ID number of this entry.
*/
public void setCallerIdNum(String callerIdNum)
{
this.callerId = callerId;
this.callerIdNum = callerIdNum;
}

/**
Expand Down

0 comments on commit afea1c3

Please sign in to comment.