1package javax.sip.header;
2
3import java.text.ParseException;
4
5public interface AllowEventsHeader extends Header {
6    String NAME = "Allow-Events";
7
8    String getEventType();
9    void setEventType(String eventType) throws ParseException;
10}
11