throws MatchingException
{
if (arpComponent == null || requestComponent == null) {
- log.error("Invalid use of ARP matching function (ExacthSharMatchFunction). One of the operands was null.");
- throw new MatchingException("Invalid use of ARP matching function (ExacthSharMatchFunction).");
+ log.error("Invalid use of ARP matching function (ExactSharMatchFunction). One of the operands was null.");
+ throw new MatchingException("Invalid use of ARP matching function (ExactSharMatchFunction).");
}
else if (!(arpComponent instanceof String) || !(requestComponent instanceof String)) {
- log.error("Invalid use of ARP matching function (ExacthSharMatchFunction). arpComponent: (" + arpComponent + "). requestComponent: (" + requestComponent + ").");
- throw new MatchingException("Invalid use of ARP matching function (ExacthSharMatchFunction).");
+ log.error("Invalid use of ARP matching function (ExactSharMatchFunction). arpComponent: (" + arpComponent + "). requestComponent: (" + requestComponent + ").");
+ throw new MatchingException("Invalid use of ARP matching function (ExactSharMatchFunction).");
}
return arpComponent.equals(requestComponent);
}