blob: 89c1a14710f924fbf000d001960c37511c6f5cfc [file] [log] [blame]
package javax.sip.header;
import java.text.ParseException;
public interface AllowEventsHeader extends Header {
String NAME = "Allow-Events";
String getEventType();
void setEventType(String eventType) throws ParseException;
}