Chatura Dilan Perera
aa24821667
[maven-release-plugin] prepare release v1.1.2
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
prabathabey
9aa54f2ead
Improving policy management functionalities to use deviceType in place of deviceTypeId for persisting policy information
8 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
geethkokila
e9da24c9e8
Changing the snapshot versions from 1.0.4 to 1.1.0
9 years ago
geethkokila
e0e0a57c11
[maven-release-plugin] prepare for next development iteration
9 years ago
geethkokila
cebb88e712
[maven-release-plugin] prepare release v1.0.3
9 years ago
geethkokila
e66d291947
[maven-release-plugin] prepare for next development iteration
9 years ago
geethkokila
f416a73e75
[maven-release-plugin] prepare release v1.0.2
9 years ago
geethkokila
185a59fbd4
[maven-release-plugin] prepare for next development iteration
9 years ago
geethkokila
b3580d754b
[maven-release-plugin] prepare release v1.0.1
9 years ago
geethkokila
4e9255fbc9
[maven-release-plugin] prepare for next development iteration
9 years ago
geethkokila
ceb60adb34
[maven-release-plugin] prepare release v1.0.0
9 years ago
geethkokila
73b185e1e6
Removing feature implementation from the policy, adding criteria based policy
10 years ago
Geeth Munasinghe
e53f2d2063
Adding profile feature bean and almost completing the dao classes, adding the PIP implementation, fixing the test cases, adding the policy manager relavant methods for PIP and PAP.
10 years ago
prabathabey
14e7be6146
Extending operation management functionality to support Profile operations
10 years ago
Geeth Munasinghe
c13b942f0e
Adding the DAO layers for the policy administration, Test cases are added for H2 database type and MySql, This is having the initial cut of the policy and profile saving
10 years ago
Geeth Munasinghe
ac2fa547d4
[maven-release-plugin] prepare for next development iteration
10 years ago
Geeth Munasinghe
28a1bd9fde
[maven-release-plugin] prepare release v0.9.1
10 years ago
Geeth Munasinghe
1a550269f1
Changing the version to 0.9.1-SNAPSHOT
10 years ago
Geeth Munasinghe
835207a13d
[maven-release-plugin] prepare for next development iteration
10 years ago
Geeth Munasinghe
7933271193
[maven-release-plugin] prepare release v0.9.1
10 years ago
Geeth Munasinghe
3032b1c55f
Adding policy components, renamed the evaluator as the complex policy decision point, added the PIP component and simple policy decision point, Add the interfaces related to policies
10 years ago