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.
18 lines
440 B
18 lines
440 B
4 months ago
|
package javax.sip.header;
|
||
|
|
||
|
import java.text.ParseException;
|
||
|
import javax.sip.InvalidArgumentException;
|
||
|
|
||
|
public interface ReasonHeader extends Header, Parameters {
|
||
|
String NAME = "Reason";
|
||
|
|
||
|
int getCause();
|
||
|
void setCause(int cause) throws InvalidArgumentException;
|
||
|
|
||
|
String getProtocol();
|
||
|
void setProtocol(String protocol) throws ParseException;
|
||
|
|
||
|
String getText();
|
||
|
void setText(String text) throws ParseException;
|
||
|
}
|