1package javax.sip.header;
2
3import java.text.ParseException;
4
5public interface MediaType {
6    String getContentSubType();
7    void setContentSubType(String contentSubType) throws ParseException;
8
9    String getContentType();
10    void setContentType(String contentType) throws ParseException;
11}
12