Home | History | Annotate | Download | only in header

Lines Matching refs:allowEvents

36  * List of AllowEvents headers.
37 * The sip message can have multiple AllowEvents headers which are strung
48 public class AllowEventsList extends SIPHeaderList<AllowEvents> {
62 super(AllowEvents.class, AllowEventsHeader.NAME);
68 * Iterator if no methods are defined in this AllowEvents Header.
79 ListIterator<AllowEvents> li = super.hlist.listIterator();
82 AllowEvents allowEvents = (AllowEvents) li.next();
83 ll.add(allowEvents.getEventType());
106 AllowEvents allowEvents = new AllowEvents();
107 allowEvents.setEventType((String) it.next());
108 this.add(allowEvents);