return pipelineEventReaderImpl;
}
@Override
public CacheKey getCacheKey(HttpServletRequest request, HttpServletResponse response) {
final CacheKey parentCacheKey = this.wrappedComponent.getCacheKey(request, response);
final CacheKey transformerKey;
if (transformerSource != null) {
transformerKey = this.transformerSource.getCacheKey(request, response);
}
else {
transformerKey = null;
}
final CacheKey transformerConfigurationKey;
if (this.xsltParameterSource != null) {
transformerConfigurationKey = this.xsltParameterSource.getCacheKey(request, response);
}
else {
transformerConfigurationKey = null;