Examples of DNSManager


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

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

            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
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.