brooklyn.entity.basic.BasicGroup 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.proxying.ImplementedBy;
import brooklyn.event.basic.BasicConfigKey;
import brooklyn.util.flags.SetFromFlag;
@ImplementedBy(BasicGroupImpl.class)
public interface BasicGroup extends AbstractGroup {
@SetFromFlag("childrenAsMembers")
public static final ConfigKey CHILDREN_AS_MEMBERS = new BasicConfigKey(
Boolean.class, "brooklyn.BasicGroup.childrenAsMembers",
"Whether children are automatically added as group members", false);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy