/** * {@inheritDoc} */ @Override public boolean isProbeActivated(final String signature) { if (this.enabled) { final Boolean active = this.signatureCache.get(signature); if (null == active) { return this.matchesPattern(signature); } else { return active; } } else { return true; } }
/** * {@inheritDoc} */ @Override public boolean isProbeActivated(final String signature) { if (this.enabled) { final Boolean active = this.signatureCache.get(signature); if (null == active) { return this.matchesPattern(signature); } else { return active; } } else { return true; } }