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

io.github.lunasaw.sip.common.transmit.event.result.DeviceNotFoundEvent Maven / Gradle / Ivy

There is a newer version: 1.2.4
Show newest version
package io.github.lunasaw.sip.common.transmit.event.result;

import lombok.Getter;

import java.util.EventObject;

import javax.sip.Dialog;

/**
 * @author luna
 */
@Getter
public class DeviceNotFoundEvent extends EventObject {

    private String callId;

    /**
     * Constructs a prototypical Event.
     *
     * @param dialog
     * @throws IllegalArgumentException if source is null.
     */
    public DeviceNotFoundEvent(Dialog dialog) {
        super(dialog);
    }

    public void setCallId(String callId) {
        this.callId = callId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy