Chatura Dilan Perera
5ccd752404
[maven-release-plugin] prepare release v1.2.0
8 years ago
mharindu
d7e8cc30dd
Merge branch 'master' of https://github.com/wso2/carbon-device-mgt into carbon-kernel-4.4.7
8 years ago
Chatura Dilan Perera
654e1d9938
[maven-release-plugin] prepare for next development iteration
8 years ago
Chatura Dilan Perera
aa24821667
[maven-release-plugin] prepare release v1.1.2
8 years ago
mharindu
f5609cc8ff
Adding carbon 4.4.7 migration changes
8 years ago
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.
8 years ago
Chatura Dilan
4ec11e8c08
[maven-release-plugin] prepare for next development iteration
8 years ago
Chatura Dilan
ffedcac543
[maven-release-plugin] prepare release v1.1.1
8 years ago
ayyoob
ba6e202442
Few changes added after testing with the cluster
8 years ago
ayyoob
c9cd051a6b
subscribed to super tenant apis
9 years ago
mharindu
106be76118
Fixed issues of API publishing to gateway
9 years ago
mharindu
3e291c5b13
[maven-release-plugin] prepare for next development iteration
9 years ago
mharindu
9549ac446b
[maven-release-plugin] prepare release v1.1.0
9 years ago
ayyoob
d3418462d9
few changes in api manager application registration
9 years ago
ayyoob
9d4defaa01
check whether the subscriber exist before creating
9 years ago
ayyoob
afe965e787
adding code review changes on JWT and API App registration
9 years ago
charithag
40f863fd57
Fix bundle imports for java 8
9 years ago
charithag
3e4ccf6337
Add missing features and component from IoTS-1.0.0-M4
9 years ago