Package org.apache.stratos.adc.mgt.dns

Examples of org.apache.stratos.adc.mgt.dns.DNSManager


        }
        return convertedHttpURL;
    }

    private static void addDNSEntry(String alias, String cartridgeType) {
        new DNSManager().addNewSubDomain(alias + "." + cartridgeType, System.getProperty(CartridgeConstants.ELB_IP));
    }
View Full Code Here


            new RepositoryFactory().destroyRepository(alias, tenantDomain, getUsername());
            log.info("Repo is destroyed successfully.. ");

            PersistenceManager.updateSubscriptionState(subscription.getSubscriptionId(), "UNSUBSCRIBED");
            new DNSManager().removeSubDomain(subscription.getHostName());
            registryManager.removeDomainMappingFromRegistry(subscription.getHostName());
            TopologyManagementService topologyMgtService = DataHolder.getTopologyMgtService();
     
            String[] ips = topologyMgtService.getActiveIPs(subscription.getCartridge(),
          subscription.getClusterDomain(), subscription.getClusterSubdomain());
View Full Code Here

TOP

Related Classes of org.apache.stratos.adc.mgt.dns.DNSManager

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.