Package com.elastisys.scale.cloudadapers.api.restapi

Examples of com.elastisys.scale.cloudadapers.api.restapi.PoolHandler


  public static Server createServer(CloudAdapter cloudAdapter,
      CloudAdapterOptions options) throws Exception {

    JaxRsApplication application = new JaxRsApplication();
    // deploy pool handler
    application.addHandler(new PoolHandler(cloudAdapter));

    if (options.enableConfigHandler) {
      // optionally deploy config handler and config schema handler
      application.addHandler(new ConfigHandler(cloudAdapter));
      application.addHandler(new ConfigSchemaHandler(cloudAdapter));
View Full Code Here

TOP

Related Classes of com.elastisys.scale.cloudadapers.api.restapi.PoolHandler

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.