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

brooklyn.entity.basic.ConfigurableEntityFactory Maven / Gradle / Ivy

There is a newer version: 0.7.0-M1
Show newest version
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