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.

16 lines
365 B

package javax.sip.header;
import java.text.ParseException;
public interface PriorityHeader extends Header {
String NAME = "Priority";
String NON_URGENT = "Non-Urgent";
String NORMAL = "Normal";
String URGENT = "Urgent";
String EMERGENCY = "Emergency";
String getPriority();
void setPriority(String priority) throws ParseException;
}