Home | History | Annotate | Download | only in parser

Lines Matching refs:CONTACT

28 import gov.nist.javax.sip.header.Contact;
38 * A parser for The SIP contact header.
45 public ContactParser(String contact) {
46 super(contact);
56 headerName(TokenTypes.CONTACT);
59 Contact contact = new Contact();
64 contact.setWildCardFlag(true);
66 super.parse(contact);
69 super.parse(contact);
71 retval.add(contact);