com.cloudbees.api.AccountRegionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudbees-api-client Show documentation
Show all versions of cloudbees-api-client Show documentation
The CloudBees API Client library for Java
package com.cloudbees.api;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import java.util.Map;
/**
* @author Fabian Donze
*/
@XStreamAlias("AccountRegionInfo")
public class AccountRegionInfo {
private String name;
private Map settings;
public AccountRegionInfo(String name) {
this.name = name;
}
public String getName() {
return name;
}
public Map getSettings() {
return settings;
}
public void setSettings(Map settings) {
this.settings = settings;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy