Home | History | Annotate | Download | only in header
      1 package javax.sip.header;
      2 
      3 import java.text.ParseException;
      4 
      5 public interface ContentDispositionHeader extends Header, Parameters {
      6     String NAME = "Content-Disposition";
      7 
      8     String RENDER = "Render";
      9     String SESSION = "Session";
     10     String ICON = "Icon";
     11     String ALERT = "Alert";
     12 
     13     String getDispositionType();
     14     void setDispositionType(String dispositionType) throws ParseException;
     15 
     16     String getHandling();
     17     void setHandling(String handling) throws ParseException;
     18 }
     19