Package org.apache.stratos.tenant.mgt.core

Examples of org.apache.stratos.tenant.mgt.core.DefaultTenantPersistor


    private static TenantPersistor tenantPersistor;
    private static TenantRegistryLoader registryLoader;
   
    protected void activate(ComponentContext context) {
        try {
            tenantPersistor = new DefaultTenantPersistor();
            bundleContext = context.getBundleContext();
            bundleContext.registerService(TenantPersistor.class.getName(), tenantPersistor, null);
            log.debug("******* Tenant Core bundle is activated ******* ");
        } catch (Exception e) {
            log.error("Error occurred while activating tenant.mgt.core bundle. " + e);
View Full Code Here

TOP

Related Classes of org.apache.stratos.tenant.mgt.core.DefaultTenantPersistor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.