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

org.asteriskjava.pbx.asterisk.wrap.events.ConnectEvent Maven / Gradle / Ivy

There is a newer version: 3.40.1
Show newest version
package org.asteriskjava.pbx.asterisk.wrap.events;

public class ConnectEvent extends ManagerEvent
{
    private static final long serialVersionUID = 1L;

    /**
     * The version of the manager protocol.
     */
    private final String protocolIdentifier;

    public ConnectEvent(final org.asteriskjava.manager.event.ConnectEvent event)
    {
        super(event);
        this.protocolIdentifier = event.getProtocolIdentifier();
    }

    public String getProtocolIdentifier()
    {
        return this.protocolIdentifier;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy