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.
22 lines
549 B
22 lines
549 B
package javax.sip;
|
|
|
|
public class TimeoutEvent extends TransactionTerminatedEvent {
|
|
private Timeout mTimeout;
|
|
|
|
public TimeoutEvent(Object source, ServerTransaction serverTransaction,
|
|
Timeout timeout) {
|
|
super(source, serverTransaction);
|
|
mTimeout = timeout;
|
|
}
|
|
|
|
public TimeoutEvent(Object source, ClientTransaction clientTransaction,
|
|
Timeout timeout) {
|
|
super(source, clientTransaction);
|
|
mTimeout = timeout;
|
|
}
|
|
|
|
public Timeout getTimeout() {
|
|
return mTimeout;
|
|
}
|
|
}
|