Package org.apache.stratos.tenant.activity.commands

Examples of org.apache.stratos.tenant.activity.commands.GetActiveTenantsInMemberResponse


            if (log.isDebugEnabled()) {
                log.debug("sent cluster command to to get Active tenants on cluster");
            }
            for (ClusteringCommand command : list) {
                if (command instanceof GetActiveTenantsInMemberResponse) {
                    GetActiveTenantsInMemberResponse response = (GetActiveTenantsInMemberResponse) command;
                    for (TenantDataBean tenant : response.getTenants()) {
                        tenants.add(tenant);
                    }
                }
            }
View Full Code Here

TOP

Related Classes of org.apache.stratos.tenant.activity.commands.GetActiveTenantsInMemberResponse

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.