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