Home | History | Annotate | Download | only in header

Lines Matching defs:callId

51     protected CallIdentifier callId;
64 callId = cid;
68 * Sets the Call-Id of the InReplyToHeader. The CallId parameter uniquely
71 * @param callId - the string value of the Call-Id of this InReplyToHeader.
73 * unexpectedly while parsing the callId value.
75 public void setCallId(String callId) throws ParseException {
77 this.callId = new CallIdentifier(callId);
84 * Returns the Call-Id of InReplyToHeader. The CallId parameter uniquely
90 if (callId == null)
92 return callId.encode();
100 return callId.encode();
105 if (this.callId != null)
106 retval.callId = (CallIdentifier) this.callId.clone();