Home
last modified time | relevance | path

Searched refs:matchTarget (Results 1 – 1 of 1) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/header/
DEvent.java130 public boolean match(Event matchTarget) { in match() argument
131 if (matchTarget.eventType == null && this.eventType != null) in match()
133 else if (matchTarget.eventType != null && this.eventType == null) in match()
135 else if (this.eventType == null && matchTarget.eventType == null) in match()
137 else if (getEventId() == null && matchTarget.getEventId() != null) in match()
139 else if (getEventId() != null && matchTarget.getEventId() == null) in match()
141 return matchTarget.eventType.equalsIgnoreCase(this.eventType) in match()
142 && ((this.getEventId() == matchTarget.getEventId()) in match()
143 || this.getEventId().equalsIgnoreCase(matchTarget.getEventId())); in match()