All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nitorcreations.willow.autoscaler.clouds.CloudAdapters Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.nitorcreations.willow.autoscaler.clouds;

import java.util.Map;

import javax.inject.Named;

import com.google.inject.Inject;

@Named
public class CloudAdapters {

  @Inject
  private Map cloudAdapters;

  public CloudAdapter get(String cloudProviderId) {
    CloudAdapter cloud = cloudAdapters.get(cloudProviderId);
    if (cloud == null) {
      throw new IllegalArgumentException("Unknown cloud provider " + cloudProviderId);
    }
    return cloud;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy