30 lines
703 B
Java
30 lines
703 B
Java
![]() |
package javax.sip.message;
|
||
|
|
||
|
import java.text.ParseException;
|
||
|
import javax.sip.address.URI;
|
||
|
|
||
|
public interface Request extends Message {
|
||
|
String ACK = "ACK";
|
||
|
String BYE = "BYE";
|
||
|
String CANCEL = "CANCEL";
|
||
|
String INVITE = "INVITE";
|
||
|
String OPTIONS = "OPTIONS";
|
||
|
String REGISTER = "REGISTER";
|
||
|
|
||
|
String INFO = "INFO";
|
||
|
String MESSAGE = "MESSAGE";
|
||
|
String NOTIFY = "NOTIFY";
|
||
|
String PRACK = "PRACK";
|
||
|
String PUBLISH = "PUBLISH";
|
||
|
String REFER = "REFER";
|
||
|
String SUBSCRIBE = "SUBSCRIBE";
|
||
|
String UPDATE = "UPDATE";
|
||
|
|
||
|
String getMethod();
|
||
|
void setMethod(String method) throws ParseException;
|
||
|
|
||
|
URI getRequestURI();
|
||
|
void setRequestURI(URI requestURI);
|
||
|
}
|
||
|
|