org.asteriskjava.pbx.CallStateAnswered Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asterisk-java Show documentation
Show all versions of asterisk-java Show documentation
The free Java library for Asterisk PBX integration.
The newest version!
package org.asteriskjava.pbx;
import org.asteriskjava.util.Log;
import org.asteriskjava.util.LogFactory;
public class CallStateAnswered extends CallStateData {
@SuppressWarnings("unused")
private static final Log logger = LogFactory.getLog(CallStateAnswered.class);
// The channel that accepted the call.
private Channel _acceptingParty;
public CallStateAnswered(Channel acceptingParty) {
this._acceptingParty = acceptingParty;
}
public Channel getAcceptingParty() {
return this._acceptingParty;
}
}