blob: 78ea2ddb41930552eea66c5382f8c2f23ceacbc9 [file] [log] [blame]
package javax.sip.header;
import java.text.ParseException;
public interface ContentTypeHeader extends Header, MediaType, Parameters {
String NAME = "Content-Type";
String getCharset();
void setContentType(String contentType, String contentSubType)
throws ParseException;
}