Examples of TenantMgtListener


Examples of org.wso2.carbon.common.listeners.TenantMgtListener

    public static void alertTenantRenames(int tenantId, String oldName, String newName)
            throws UserStoreException {
        Object[] tenantMgtListeners = tenantMgtListenerServiceTracker.getServices();

        for (Object tenantMgtListenerObj : tenantMgtListeners) {
            TenantMgtListener tenantMgtLister = (TenantMgtListener) tenantMgtListenerObj;
            tenantMgtLister.renameTenant(tenantId, oldName, newName);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.