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