1package javax.sip;
2
3import javax.sip.message.Response;
4
5public interface ServerTransaction extends Transaction {
6    void sendResponse(Response response)
7            throws SipException, InvalidArgumentException;
8
9    void enableRetransmissionAlerts() throws SipException;
10
11    ServerTransaction getCanceledInviteTransaction();
12}
13