public WebConsolePlugin()

in src/main/java/org/apache/sling/tenant/internal/console/WebConsolePlugin.java [70:81]


    public WebConsolePlugin(final BundleContext bundleContext, final TenantProviderImpl tenantProvider, final XSSAPI xss) {
        this.tenantProvider = tenantProvider;

        Dictionary<String, Object> props = new Hashtable<String, Object>();
        props.put(Constants.SERVICE_DESCRIPTION, "Apache Sling Tenant Management Console");
        props.put("felix.webconsole.label", LABEL);
        props.put("felix.webconsole.title", TITLE);
        props.put("felix.webconsole.category", CATEGORY);

        this.xss = xss;
        this.service = bundleContext.registerService(Servlet.class, this, props);
    }