You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
733 B
31 lines
733 B
package javax.sip;
|
|
|
|
import java.util.EventObject;
|
|
import javax.sip.message.Response;
|
|
|
|
public class ResponseEvent extends EventObject {
|
|
private Dialog mDialog;
|
|
private Response mResponse;
|
|
private ClientTransaction mClientTransaction;
|
|
|
|
public ResponseEvent(Object source, ClientTransaction clientTransaction,
|
|
Dialog dialog, Response response) {
|
|
super(source);
|
|
mDialog = dialog;
|
|
mResponse = response;
|
|
mClientTransaction = clientTransaction;
|
|
}
|
|
|
|
public Dialog getDialog() {
|
|
return mDialog;
|
|
}
|
|
|
|
public Response getResponse() {
|
|
return mResponse;
|
|
}
|
|
|
|
public ClientTransaction getClientTransaction(){
|
|
return mClientTransaction;
|
|
}
|
|
}
|