Home | History | Annotate | Download | only in header
      1 package javax.sip.header;
      2 
      3 import java.text.ParseException;
      4 
      5 public interface ExtensionHeader extends Header {
      6     String getValue();
      7     void setValue(String value) throws ParseException;
      8 }
      9