brooklyn.config.WrappedConfigKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-core Show documentation
Show all versions of brooklyn-core Show documentation
Entity implementation classes, events, and other core elements
package brooklyn.config;
import com.google.common.base.Preconditions;
import brooklyn.config.ConfigKey.HasConfigKey;
public class WrappedConfigKey implements HasConfigKey {
private final ConfigKey key;
public WrappedConfigKey(ConfigKey key) {
this.key = Preconditions.checkNotNull(key);
}
@Override
public ConfigKey getConfigKey() {
return key;
}
@Override
public String toString() {
return key.toString()+"(wrapped)";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy