blob: 94c899ebfe4bcd66ecc86e7dfd6e9f969f77ded2 [file] [log] [blame]
package javax.sip.header;
import java.text.ParseException;
public interface MediaType {
String getContentSubType();
void setContentSubType(String contentSubType) throws ParseException;
String getContentType();
void setContentType(String contentType) throws ParseException;
}