HomeSort by relevance Sort by last modified time
    Searched refs:allowEvents (Results 1 - 3 of 3) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/parser/
AllowEventsParser.java 33 * Parser for AllowEvents header.
46 * @param allowEvents the header to parse
48 public AllowEventsParser(String allowEvents) {
49 super(allowEvents);
61 * parse the AllowEvents String header
74 AllowEvents allowEvents = new AllowEvents();
75 allowEvents.setHeaderName(SIPHeaderNames.ALLOW_EVENTS);
80 allowEvents.setEventType(token.getTokenValue())
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AllowEventsList.java 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())
    [all...]
HeaderFactoryImpl.java 164 AllowEvents allowEvents = new AllowEvents();
165 allowEvents.setEventType(eventType);
166 return allowEvents;
    [all...]

Completed in 76 milliseconds