Commit Graph

21 Commits

Author SHA1 Message Date
charitha
d54d78a02b Refactoring 2018-08-20 21:16:08 +05:30
charitha
82778f06c6 Add secure web socket proxy to route ws connections in IoTS cluster 2018-08-20 15:44:55 +05:30
Rasika Perera
ab352015b7 Fixes for the https://github.com/wso2/product-iots/issues/1624 2018-01-24 07:26:56 +05:30
sinthuja
e2d4222f74 Adding testcases for the api-mgt handler component. 2017-10-11 21:12:35 +05:30
sinthuja
6d61878b53 Line formatting and adding missing class comments. 2017-10-10 23:38:44 +05:30
sinthuja
0475ae9e3a adding class and test case comments. 2017-10-10 23:37:15 +05:30
sinthuja
6163b14321 adding service component testcase. 2017-10-10 23:25:57 +05:30
sinthuja
9da6b07ea3 setting the config to be null to avoid intermittent failure. 2017-10-10 22:23:54 +05:30
sinthuja
a5c2228664 removing unnecessary exceptions from testcase method. 2017-10-10 22:09:46 +05:30
sinthuja
bbdc876311 Removing unused import. 2017-10-10 22:07:55 +05:30
sinthuja
f2943f956c adding depends on methods to test case to make sure the execution order. 2017-10-10 22:07:01 +05:30
sinthuja
b7e682a0bc Adding more testcases, and cleaning up the code. 2017-10-10 18:54:22 +05:30
sinthuja
ef6e7df656 adding more testcases for the analytics.publisher component. 2017-10-10 17:18:53 +05:30
sinthuja
b51c9fd920 Committing first cut of testcases for data publisher. 2017-10-10 15:06:24 +05:30
Rasika Perera
6a2785cc8d Multitenancy added to event publisher 2017-06-05 10:18:31 +05:30
Timo Briddigkeit
ed07774552 Fixed literal string comparison.
This line is in the form of
String str = ...
str.equals("someOtherString");
//or
str.compareTo("someOtherString");

A NullPointerException may occur if the String variable str is null. If instead the code was restructured to
String str = ...
"someOtherString".equals(str);
//or
"someOtherString".compareTo(str);
that is, call equals() or compareTo() on the string literal, passing the variable as an argument, this exception could never happen as both equals() and compareTo() check for null.
2016-07-15 16:25:31 +02:00
Timo Briddigkeit
ee5b077e6a Fixed various XML External Entity (XXE) attack vulnerabilities 2016-07-13 15:02:11 +02:00
ayyoob
ac587c3353 fixes after testing 2016-05-12 02:42:29 +05:30
ayyoob
afe965e787 adding code review changes on JWT and API App registration 2016-04-14 19:55:55 +05:30
prabathabey
b584131160 Fixing build failures in device.mgt.analytics.data.publisher bundle 2016-03-27 13:18:18 +05:30
prabathabey
43926b64b4 Renaming previous org.wso2.carbon.devie.mgt.analytics module and the corresponding feature to org.wso2.carbon.device.mgt.analytics.data.publisher 2016-03-27 13:01:26 +05:30