in src/main/java/org/apache/sling/rewriter/impl/ProcessorConfigurationImpl.java [122:150]
public ProcessorConfigurationImpl(String[] contentTypes,
String[] paths,
String[] extensions,
String[] resourceTypes,
boolean unwrapResources,
String[] selectors,
int order,
ProcessingComponentConfiguration generatorConfig,
ProcessingComponentConfiguration[] transformerConfigs,
ProcessingComponentConfiguration serializerConfig,
boolean processErrorResponse) {
this.name = null;
this.contentTypes = contentTypes;
this.resourceTypes = resourceTypes;
this.unwrapResources = unwrapResources;
this.selectors = selectors;
this.paths = paths;
this.extensions = extensions;
this.order = order;
this.generatorConfiguration = generatorConfig;
this.transformerConfigurations = transformerConfigs;
this.serializerConfiguration = serializerConfig;
this.processorConfig = null;
this.isActive = true;
this.isValid = true;
this.isPipeline = true;
this.processErrorResponse = processErrorResponse;
this.descString = this.buildDescString();
}