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