Package com.cloud.server

Examples of com.cloud.server.ConfigurationServer


   
  @Override
    public void init() throws ServletException {
      // Save Configuration Values
        //ComponentLocator loc = ComponentLocator.getLocator(ConfigurationServer.Name);
      ConfigurationServer c = (ConfigurationServer)ComponentLocator.getComponent(ConfigurationServer.Name);
      //ConfigurationServer c = new ConfigurationServerImpl();
      try {
        c.persistDefaultValues();
        s_locator = ComponentLocator.getLocator(ManagementServer.Name);
        ManagementServer ms = (ManagementServer)ComponentLocator.getComponent(ManagementServer.Name);
        ApiServer.initApiServer(ms.getApiConfig());
      } catch (InvalidParameterValueException ipve) {
        s_logger.error("Exception starting management server ", ipve);
View Full Code Here

TOP

Related Classes of com.cloud.server.ConfigurationServer

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.