in src/main/java/org/apache/sling/installer/factories/subsystems/base/impl/Activator.java [66:72]
private void registerInstaller(BundleContext context, SlingSettingsService slingSettings) {
final Dictionary<String, Object> props = new Hashtable<String, Object>();
props.put(Constants.SERVICE_DESCRIPTION, "Apache Sling Installer Support for subsystem-base files");
props.put(Constants.SERVICE_VENDOR, "The Apache Software Foundation");
this.serviceReg = context.registerService(ResourceTransformer.class,
new SubsystemBaseTransformer(slingSettings), props);
}