blob: 0a21cd012c29508e240c7fa5ee41230ae76fa5f3 [file] [log] [blame]
package brooklyn.entity;
import java.io.Serializable;
import java.util.NoSuchElementException;
import java.util.Set;
import brooklyn.config.ConfigKey;
import brooklyn.event.Sensor;
import brooklyn.util.guava.Maybe;
/**
* Gives type information for an {@link Entity}. It is an immutable snapshot.
*
* It reflects a given entity at the time the snapshot was created: if sensors
* were added or removed on-the-fly then those changes will be included in subsequent
* snapshots. Therefore instances of a given class of entity could have different
* EntityTypes.
*/
public interface EntityType extends Serializable {
/**
* The type name of this entity (normally the fully qualified class name).
*/
String getName();
/**
* The simple type name of this entity (normally the unqualified class name).
*/
String getSimpleName();
/**
* ConfigKeys available on this entity.
*/
Set<ConfigKey<?>> getConfigKeys();
/**
* Sensors available on this entity.
*/
Set<Sensor<?>> getSensors();
/**
* Effectors available on this entity.
*/
Set<Effector<?>> getEffectors();
/** @return an effector with the given name, if it exists.
*/
public Maybe<Effector<?>> getEffectorByName(String name);
/**
* @return the matching effector on this entity
* @throws NoSuchElementException If there is no exact match for this signature
* <p>
* @deprecated since 0.7.0 use {@link #getEffectorByName(String)};
* use of multiple effectors with the same name is not supported by the EntityDynamicType implementation,
* so should be discouraged. overloading can be achieved by inspecting the parameters map.
*/
@Deprecated
Effector<?> getEffector(String name, Class<?>... parameterTypes);
/**
* The ConfigKey with the given name, or null if not found.
*/
ConfigKey<?> getConfigKey(String name);
/**
* The Sensor with the given name, or null if not found.
*/
Sensor<?> getSensor(String name);
/**
* @return True if has the sensor with the given name; false otherwise.
*/
boolean hasSensor(String name);
}