• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package javax.sip.header;
2 
3 import java.text.ParseException;
4 
5 public interface CallIdHeader extends Header {
6     String NAME = "Call-ID";
7 
getCallId()8     String getCallId();
setCallId(String callId)9     void setCallId(String callId) throws ParseException;
10 }
11