1 package javax.sip.header;
2 
3 import java.text.ParseException;
4 
5 public interface AllowHeader extends Header {
6     String NAME = "Allow";
7 
getMethod()8     String getMethod();
setMethod(String method)9     void setMethod(String method) throws ParseException;
10 }
11