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