Home | History | Annotate | Download | only in stack

Lines Matching refs:dialogId

566      * @param dialogId
570 public SIPServerTransaction getRetransmissionAlertTransaction(String dialogId) {
571 return (SIPServerTransaction) this.retransmissionAlertTransactions.get(dialogId);
604 String dialogId = dialog.getDialogId();
605 if (dialogTable.containsKey(dialogId)) {
607 stackLogger.logDebug("putDialog: dialog already exists" + dialogId + " in table = "
608 + dialogTable.get(dialogId));
613 stackLogger.logDebug("putDialog dialogId=" + dialogId + " dialog = " + dialog);
618 dialogTable.put(dialogId, dialog);
633 String dialogId = ((SIPRequest) transaction.getRequest()).getDialogId(false);
634 if (this.earlyDialogTable.get(dialogId) != null) {
635 SIPDialog dialog = this.earlyDialogTable.get(dialogId);
640 this.earlyDialogTable.put(dialogId, retval);
644 this.earlyDialogTable.put(dialogId, retval);
663 String dialogId = ((SIPRequest) transaction.getRequest()).getDialogId(false);
665 if (this.earlyDialogTable.get(dialogId) != null) {
666 retval = this.earlyDialogTable.get(dialogId);
668 this.earlyDialogTable.remove(dialogId);
749 * @param dialogId is the dialog id to check.
752 public SIPDialog getDialog(String dialogId) {
754 SIPDialog sipDialog = (SIPDialog) dialogTable.get(dialogId);
756 stackLogger.logDebug("getDialog(" + dialogId + ") : returning " + sipDialog);
765 * @param dialogId is the dialog Id to remove.
767 public void removeDialog(String dialogId) {
771 dialogTable.remove(dialogId);
2335 StringBuffer dialogId = new StringBuffer(cid);
2339 dialogId.append(":");
2340 dialogId.append(toTag);
2344 dialogId.append(":");
2345 dialogId.append(fromTag);
2347 String did = dialogId.toString().toLowerCase();