Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/main/java/org/asteriskjava/manager/event/MeetMeJoinEvent.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,25 @@ public class MeetMeJoinEvent extends AbstractMeetMeEvent {
*/
private static final long serialVersionUID = 0L;

private Integer duration;

/**
* @param source
*/
public MeetMeJoinEvent(Object source) {
super(source);
}

/**
* Returns how long the user has been in the conference.
*
* @return the duration, in seconds, the user has been in the conference
*/
public Integer getDuration() {
return duration;
}

public void setDuration(Integer duration) {
this.duration = duration;
}
}