All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.asteriskjava.pbx.CallStateAnswered Maven / Gradle / Ivy

There is a newer version: 3.41.0
Show 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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy