Uses of Interface
brooklyn.entity.Entity

Packages that use Entity
brooklyn.entity   
brooklyn.entity.drivers   
brooklyn.entity.rebind   
brooklyn.event   
brooklyn.management   
 

Uses of Entity in brooklyn.entity
 

Subinterfaces of Entity in brooklyn.entity
 interface Application
          TODO javadoc
 interface Group
          An Entity that groups together other entities.
 

Methods in brooklyn.entity that return Entity
 Entity Entity.addChild(Entity child)
          Add a child Entity, and set this entity as its parent.
 Entity Entity.addOwnedChild(Entity child)
          Deprecated. see addChild(Entity)
 Entity Entity.getOwner()
          Deprecated. see getParent()
 Entity Entity.getParent()
          The parent of this entity, null if no parent.
 Entity Entity.setOwner(Entity group)
          Deprecated. see setOwner(Entity)
 Entity Entity.setParent(Entity parent)
          Sets the parent (i.e.
 

Methods in brooklyn.entity that return types with arguments of type Entity
 Collection<Entity> Entity.getChildren()
          Return the entities that are children of (i.e.
 Collection<Entity> Group.getMembers()
          Return the entities that are members of this group.
 Collection<Entity> Entity.getOwnedChildren()
          Deprecated. see getChildren()
 

Methods in brooklyn.entity with parameters of type Entity
 Entity Entity.addChild(Entity child)
          Add a child Entity, and set this entity as its parent.
 boolean Group.addMember(Entity member)
          Adds the given member, returning true if this modifies the set of members (i.e.
 Entity Entity.addOwnedChild(Entity child)
          Deprecated. see addChild(Entity)
 boolean Group.hasMember(Entity member)
           
 boolean Entity.removeChild(Entity child)
          Removes the specified child Entity; its parent will be set to null.
 boolean Group.removeMember(Entity member)
          Removes the given member, returning true if this modifies the set of members (i.e.
 boolean Entity.removeOwnedChild(Entity child)
          Deprecated. see removeChild(Entity)
 Entity Entity.setOwner(Entity group)
          Deprecated. see setOwner(Entity)
 Entity Entity.setParent(Entity parent)
          Sets the parent (i.e.
 

Uses of Entity in brooklyn.entity.drivers
 

Subinterfaces of Entity in brooklyn.entity.drivers
 interface DriverDependentEntity<D extends EntityDriver>
          An Entity that needs to have a driver.
 

Uses of Entity in brooklyn.entity.rebind
 

Methods in brooklyn.entity.rebind that return Entity
 Entity RebindContext.getEntity(String id)
           
 

Methods in brooklyn.entity.rebind with parameters of type Entity
 void ChangeListener.onChanged(Entity entity)
           
 void ChangeListener.onManaged(Entity entity)
           
 void ChangeListener.onUnmanaged(Entity entity)
           
 

Uses of Entity in brooklyn.event
 

Methods in brooklyn.event that return Entity
 Entity SensorEvent.getSource()
          The Entity where the data originated.
 

Methods in brooklyn.event with parameters of type Entity
 SensorEvent<T> Sensor.newEvent(Entity entity, T value)
          Create a new SensorEvent object for a specific Entity and data point.
 

Uses of Entity in brooklyn.management
 

Methods in brooklyn.management that return Entity
 Entity ManagementContext.getEntity(String id)
          Returns the entity with the given identifier (may be a full instance, or a proxy to one which is remote)
 

Methods in brooklyn.management that return types with arguments of type Entity
 Collection<Entity> ManagementContext.getEntities()
          All entities under control of this management plane
 

Methods in brooklyn.management with parameters of type Entity
 ExecutionContext ManagementContext.getExecutionContext(Entity entity)
          Returns an ExecutionContext instance representing tasks (from the ExecutionManager) associated with this entity, and capable of conveniently running such tasks which will be associated with that entity
 SubscriptionContext ManagementContext.getSubscriptionContext(Entity entity)
          Returns a SubscriptionContext instance representing subscriptions (from the SubscriptionManager) associated with this entity, and capable of conveniently subscribing on behalf of that entity
 Set<SubscriptionHandle> SubscriptionManager.getSubscriptionsForEntitySensor(Entity source, Sensor<?> sensor)
          Return the subscriptions on a given source-sensor pair
 boolean ManagementContext.isManaged(Entity entity)
          whether the entity is under management by this management context
 void ManagementContext.manage(Entity e)
          Manage an entity.
<T> SubscriptionHandle
SubscriptionManager.subscribe(Entity producer, Sensor<T> sensor, SensorEventListener<? super T> listener)
           
<T> SubscriptionHandle
SubscriptionContext.subscribe(Entity producer, Sensor<T> sensor, SensorEventListener<? super T> listener)
           
<T> SubscriptionHandle
SubscriptionManager.subscribe(Map<String,Object> flags, Entity producer, Sensor<T> sensor, SensorEventListener<? super T> listener)
          Subscribe to Sensor data changes and events on a given Entity, supplying the SensorEventListener to invoke when they occur.
<T> SubscriptionHandle
SubscriptionContext.subscribe(Map<String,Object> flags, Entity producer, Sensor<T> sensor, SensorEventListener<? super T> listener)
          As SubscriptionManager.subscribe(Map, Entity, Sensor, SensorEventListener) with default subscription parameters for this context
<T> SubscriptionHandle
SubscriptionManager.subscribeToChildren(Entity parent, Sensor<T> sensor, SensorEventListener<? super T> listener)
           
<T> SubscriptionHandle
SubscriptionContext.subscribeToChildren(Entity parent, Sensor<T> sensor, SensorEventListener<? super T> listener)
           
<T> SubscriptionHandle
SubscriptionManager.subscribeToChildren(Map<String,Object> flags, Entity parent, Sensor<T> sensor, SensorEventListener<? super T> listener)
          Subscribe to Sensor data changes and events on all children of a given Entity, supplying the SensorEventListener to invoke when they occur.
<T> SubscriptionHandle
SubscriptionContext.subscribeToChildren(Map<String,Object> flags, Entity parent, Sensor<T> sensor, SensorEventListener<? super T> listener)
           
 void ManagementContext.unmanage(Entity e)
          Unmanage an entity.
 



Copyright © 2013. All Rights Reserved.