Package voldemort.rest.coordinator.admin

Examples of voldemort.rest.coordinator.admin.CoordinatorAdminService


    private List<VoldemortService> createServices() {
        List<VoldemortService> services = new ArrayList<VoldemortService>();
        services.add(new CoordinatorProxyService(config, storeClientConfigs));
        if(config.isAdminServiceEnabled()) {
            services.add(new CoordinatorAdminService(config, storeClientConfigs));
        }
        return ImmutableList.copyOf(services);
    }
View Full Code Here

TOP

Related Classes of voldemort.rest.coordinator.admin.CoordinatorAdminService

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.