brooklyn.entity.basic.ConfigurableEntityFactory 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.entity.basic;
import brooklyn.config.ConfigKey;
import brooklyn.entity.Entity;
import java.util.Map;
public interface ConfigurableEntityFactory extends EntityFactory {
ConfigurableEntityFactory configure(Map flags);
ConfigurableEntityFactory configure(ConfigKey key, Object value);
ConfigurableEntityFactory configure(ConfigKey.HasConfigKey key, Object value);
ConfigurableEntityFactory setConfig(ConfigKey key, Object value);
ConfigurableEntityFactory setConfig(ConfigKey.HasConfigKey key, Object value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy