[zb4osgi-changeset] [scm] ZigBee 4 OSGi repository change: r489 - /projects/zb4osgi/sandbox/manlio.bacco/org.aaloa.zb4osgi.zigbee.zcl.library/src/main/java/it/cnr/isti/zigbee/zcl/library/impl/security_safety/IASZoneCluster.java

scm-notify at zb4osgi.aaloa.org scm-notify at zb4osgi.aaloa.org
Mon Sep 24 17:59:36 CEST 2012


Author: manlio.bacco
Date: Mon Sep 24 17:59:36 2012
New Revision: 489

Log:
new cluster

Modified:
    projects/zb4osgi/sandbox/manlio.bacco/org.aaloa.zb4osgi.zigbee.zcl.library/src/main/java/it/cnr/isti/zigbee/zcl/library/impl/security_safety/IASZoneCluster.java

Modified: projects/zb4osgi/sandbox/manlio.bacco/org.aaloa.zb4osgi.zigbee.zcl.library/src/main/java/it/cnr/isti/zigbee/zcl/library/impl/security_safety/IASZoneCluster.java
==============================================================================
--- projects/zb4osgi/sandbox/manlio.bacco/org.aaloa.zb4osgi.zigbee.zcl.library/src/main/java/it/cnr/isti/zigbee/zcl/library/impl/security_safety/IASZoneCluster.java (original)
+++ projects/zb4osgi/sandbox/manlio.bacco/org.aaloa.zb4osgi.zigbee.zcl.library/src/main/java/it/cnr/isti/zigbee/zcl/library/impl/security_safety/IASZoneCluster.java Mon Sep 24 17:59:36 2012
@@ -24,7 +24,7 @@
 	public IASZoneCluster(ZigBeeDevice zbDevice) {
 
 		super(zbDevice);
-		
+
 		attributeZoneState = new AttributeImpl(zbDevice,this,Attributes.ZONE_STATE);
 		attributeZoneType = new AttributeImpl(zbDevice,this,Attributes.ZONE_TYPE);
 		attributeZoneStatus = new AttributeImpl(zbDevice,this,Attributes.ZONE_STATUS);
@@ -71,12 +71,14 @@
 		return attributes;
 	}
 
-	public Response ZoneStatusChangeNotification(byte zoneStatus, byte extendedStatus) {
+	public Response ZoneStatusChangeNotification(short zoneStatus, byte extendedStatus) throws ZigBeeClusterException {
 
+		//ZoneStatusChangeNotificationCommand zscnc = new ZoneStatusChangeNotificationCommand(zoneStatus, extendedStatus);
+		//Response response = invoke(zscnc);
 		return null;
 	}
 
-	public ZoneEnrollResponse ZoneEnrollRequest(byte zoneType, byte manufacturerCode) throws ZigBeeClusterException {
+	public ZoneEnrollResponse ZoneEnrollRequest(short zoneType, int manufacturerCode) throws ZigBeeClusterException {
 
 		ZoneEnrollCommand zoneEnrCmd = new ZoneEnrollCommand(zoneType, manufacturerCode);
 		Response response = invoke(zoneEnrCmd);




More information about the Commit mailing list