You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
489 B

package javax.sip.header;
import java.text.ParseException;
public interface ContentDispositionHeader extends Header, Parameters {
String NAME = "Content-Disposition";
String RENDER = "Render";
String SESSION = "Session";
String ICON = "Icon";
String ALERT = "Alert";
String getDispositionType();
void setDispositionType(String dispositionType) throws ParseException;
String getHandling();
void setHandling(String handling) throws ParseException;
}