13 lines
330 B
Java
13 lines
330 B
Java
package javax.sip;
|
|
|
|
import javax.sip.message.Response;
|
|
|
|
public interface ServerTransaction extends Transaction {
|
|
void sendResponse(Response response)
|
|
throws SipException, InvalidArgumentException;
|
|
|
|
void enableRetransmissionAlerts() throws SipException;
|
|
|
|
ServerTransaction getCanceledInviteTransaction();
|
|
}
|