Package org.osgi.service.zigbee
Interface ZigBeeEvent
-
public interface ZigBeeEventThis interface represents events generated by a ZigBee Device node.- Author:
- $Id: 8e8eb5867bb1b3eb462f221539d37d25c1a23d41 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetAttributeId()Returns the attribute identifier (that is, the attribute's ID).intgetClusterId()Returns the cluster id associated to this ZigBeeEvent.shortgetEndpointId()Returns the endpoint identifier.java.math.BigIntegergetIEEEAddress()Returns the ZigBee device node IEEE Address.java.lang.ObjectgetValue()Returns an object containing the new value of the related ZigBee attribute.
-
-
-
Method Detail
-
getIEEEAddress
java.math.BigInteger getIEEEAddress()
Returns the ZigBee device node IEEE Address.- Returns:
- the ZigBee device node IEEE Address.
-
getEndpointId
short getEndpointId()
Returns the endpoint identifier.- Returns:
- the endpoint identifier.
-
getClusterId
int getClusterId()
Returns the cluster id associated to this ZigBeeEvent.- Returns:
- the cluster id.
-
getAttributeId
int getAttributeId()
Returns the attribute identifier (that is, the attribute's ID).- Returns:
- the attribute identifier (that is, the attribute's ID).
-
getValue
java.lang.Object getValue()
Returns an object containing the new value of the related ZigBee attribute.- Returns:
- an object containing the new value for the ZigBee attribute that has changed.
-
-