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

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

There is a newer version: 0.7.0-M1
Show newest version
package brooklyn.entity.basic;

import brooklyn.entity.Entity;
import brooklyn.entity.proxying.ImplementedBy;

/**
 * This is the most basic entity possible - does nothing beyond AbstractEntity.
 * Useful when structuring the entity management hierarchy; also consider using
 * {@link BasicGroup}.
 * 
 * Example usage is:
 * {@code Entity entity = getEntityManager().createEntity(EntitySpec.create(BasicEntity.class))}.
 * 
 * @author aled
 */
@ImplementedBy(BasicEntityImpl.class)
public interface BasicEntity extends Entity {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy