-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Digital display new operations added and modified DigitalDisplayAgent…
… added request from lasantha
- Loading branch information
1 parent
4eece3d
commit 637e0ef
Showing
26 changed files
with
398 additions
and
221 deletions.
There are no files selected for viewing
306 changes: 151 additions & 155 deletions
306
.../carbon/device/mgt/iot/digitaldisplay/controller/api/DigitalDisplayControllerService.java
Large diffs are not rendered by default.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
...a/org/wso2/carbon/device/mgt/iot/digitaldisplay/controller/api/model/ScreenShotModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package org.wso2.carbon.device.mgt.iot.digitaldisplay.controller.api.model; | ||
|
||
public class ScreenShotModel { | ||
|
||
private String[] scrrenShotData; | ||
private int length; | ||
|
||
public ScreenShotModel(){ | ||
|
||
} | ||
|
||
public ScreenShotModel(String[] scrrenShotData , int length){ | ||
this.scrrenShotData = scrrenShotData; | ||
this.length = length; | ||
} | ||
|
||
public void setScrrenShotData(String[] scrrenShotData){ | ||
this.scrrenShotData = scrrenShotData; | ||
} | ||
|
||
public void setLength(int length){ | ||
this.length = length; | ||
} | ||
|
||
public String[] getScrrenShotData(){ | ||
return this.scrrenShotData; | ||
} | ||
|
||
public int getLength(){ | ||
return this.length; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+105 KB
(100%)
....carbon.device.mgt.iot.digitaldisplay.feature/src/main/resources/agent/DigitalDisplay.zip
Binary file not shown.
Empty file removed
0
...carbon.device.mgt.iot.digitaldisplay.feature/src/main/resources/agent/ReadMe.md
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ for P in paho-mqtt lxml; do | |
} | ||
done | ||
|
||
unzip DigitalDisplay | ||
cp ./deviceConfig.properties ./DigitalDisplay | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.