Home | History | Annotate | Download | only in header

Lines Matching defs:allow

36  * List of ALLOW headers. The sip message can have multiple Allow headers
43 public class AllowList extends SIPHeaderList<Allow> {
62 super(Allow.class, AllowHeader.NAME);
68 * Iterator if no methods are defined in this Allow Header.
82 for ( Iterator<Allow> it = this.hlist.iterator(); it.hasNext();) {
83 Allow a = (Allow)it.next();
108 Allow allow = new Allow();
109 allow.setMethod((String) it.next());
110 this.add(allow);