Searched refs:fromTag (Results 1 - 6 of 6) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/header/
H A DHeaderFactoryExt.java74 * @param fromTag -
75 * the fromTag to use.
79 String fromTag) throws ParseException;
230 * @param fromTag -
231 * the fromTag to use.
235 String fromTag) throws ParseException;
78 createReplacesHeader(String callId, String toTag, String fromTag) argument
234 createJoinHeader(String callId, String toTag, String fromTag) argument
H A DHeaderFactoryImpl.java1274 String fromTag) throws ParseException
1278 replaces.setFromTag(fromTag);
1289 String fromTag) throws ParseException
1293 join.setFromTag(fromTag);
1273 createReplacesHeader(String callId, String toTag, String fromTag) argument
1288 createJoinHeader(String callId, String toTag, String fromTag) argument
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransactionStack.java812 String fromTag = ct.from.getTag();
819 stackLogger.logDebug("ct.fromTag = " + fromTag);
825 if ( fromTag.equalsIgnoreCase(thisToTag)
2332 String fromTag = replacesHeader.getFromTag();
2343 if (fromTag != null) {
2345 dialogId.append(fromTag);
2376 String fromTag = joinHeader.getFromTag();
2387 if (fromTag != null) {
2389 retval.append(fromTag);
[all...]
H A DSIPServerTransaction.java621 String originalFromTag = super.fromTag;
1353 String fromTag = ((SIPRequest) this.getRequest()).getFrom().getTag();
1354 if (fromTag != null && sipResponse.getFromTag() != null
1355 && !sipResponse.getFromTag().equals(fromTag)) {
1357 } else if (fromTag != null) {
1358 sipResponse.getFrom().setTag(fromTag);
H A DSIPTransaction.java258 protected String fromTag; field in class:SIPTransaction
395 this.fromTag = this.from.getTag();
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPRequest.java1177 String fromTag = this.getFromTag();
1185 if (fromTag != null) {
1186 return new StringBuffer().append(requestUri).append(":").append(fromTag).append(":").append(cseq).append(":")

Completed in 198 milliseconds