Package org.apache.stratos.adc.topology.mgt.serviceobjects

Examples of org.apache.stratos.adc.topology.mgt.serviceobjects.DomainContext


       
        for (ServiceConfiguration serviceConfiguration : serviceConfigs) {
                 
          List<Integer> tenantIds = LoadBalancerConfigUtil.getTenantIds(serviceConfiguration.getTenantRange());
          if(!tenantIds.isEmpty() && (tenantIds.contains(tenantId) || tenantIds.contains(0))){
            DomainContext domainCtx = new DomainContext(serviceConfiguration.getDomain(), serviceConfiguration.getSubDomain());
            if (!domainContexts.contains(domainCtx)) {
              domainContexts.add(domainCtx);
            }
          }
                }
View Full Code Here

TOP

Related Classes of org.apache.stratos.adc.topology.mgt.serviceobjects.DomainContext

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.