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