• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package javax.sip.header;
2 
3 import java.text.ParseException;
4 
5 public interface Encoding {
getEncoding()6     String getEncoding();
setEncoding(String encoding)7     void setEncoding(String encoding) throws ParseException;
8 }
9