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

  /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...]
AllowEvents.java 34 * AllowEvents SIPHeader.
43 public final class AllowEvents
57 public AllowEvents() {
64 public AllowEvents(String m) {
81 + "AllowEvents, setEventType(), the eventType parameter is null");
NameMap.java 169 putNameMap(ALLOW_EVENTS, AllowEvents.class.getName()); //46
HeaderFactoryImpl.java 164 AllowEvents allowEvents = new AllowEvents();
165 allowEvents.setEventType(eventType);
166 return allowEvents;
    [all...]
  /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...]

Completed in 70 milliseconds