Home | History | Annotate | Download | only in header
      1 package javax.sip.header;
      2 
      3 import java.text.ParseException;
      4 
      5 public 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