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.
27 lines
707 B
27 lines
707 B
4 months ago
|
package javax.sip;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import javax.sip.message.Request;
|
||
|
|
||
|
public interface Transaction extends Serializable {
|
||
|
Object getApplicationData();
|
||
|
void setApplicationData (Object applicationData);
|
||
|
|
||
|
String getBranchId();
|
||
|
Dialog getDialog();
|
||
|
String getHost();
|
||
|
String getPeerAddress();
|
||
|
int getPeerPort();
|
||
|
int getPort();
|
||
|
Request getRequest();
|
||
|
SipProvider getSipProvider();
|
||
|
TransactionState getState();
|
||
|
String getTransport();
|
||
|
|
||
|
int getRetransmitTimer() throws UnsupportedOperationException;
|
||
|
void setRetransmitTimer(int retransmitTimer)
|
||
|
throws UnsupportedOperationException;
|
||
|
|
||
|
void terminate() throws ObjectInUseException;
|
||
|
}
|