Skip to content

Commit

Permalink
exposing startDialogTime property with getter
Browse files Browse the repository at this point in the history
  • Loading branch information
anatolysatanovskiy-mobius committed Mar 28, 2018
1 parent 8e0aa39 commit 3871e8d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -354,4 +354,10 @@ public interface MAPDialog extends Serializable {
*/
void addEricssonData(AddressString imsi, AddressString vlrNo);

/**
* Return the dialog start time epoch timestamp in milliseconds
*
* @return
*/
long getStartTimeDialog();
}
Original file line number Diff line number Diff line change
Expand Up @@ -653,4 +653,8 @@ public void addEricssonData(AddressString eriMsisdn, AddressString vlrNo) {
protected enum DelayedAreaState {
No, Continue, End, PrearrangedEnd;
}

public long getStartTimeDialog() {
return this.tcapDialog.getStartTimeDialog();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -324,4 +324,10 @@ public interface Dialog extends Serializable {
*/
ReentrantLock getDialogLock();

/**
* Return the dialog start time epoch timestamp in milliseconds
*
* @return
*/
long getStartTimeDialog();
}
Original file line number Diff line number Diff line change
Expand Up @@ -2198,6 +2198,9 @@ public void setRelayedLocalDialogId(Long relayedDialogId) {
this.localRelayedTransactionIdObject = relayedDialogId;
}

public long getStartTimeDialog() {
return this.startDialogTime;
}

/*
* (non-Javadoc)
Expand Down

0 comments on commit 3871e8d

Please sign in to comment.