warunalakshitha
97a53a7387
Merge branch 'master' of https://github.com/wso2/carbon-device-mgt
8 years ago
Harshan Liyanage
273be79ca2
Resolving #695:Fix for Policy Delegation task is not starting for tenants in distributed setup
8 years ago
warunalakshitha
5831d277da
Fixing https://github.com/wso2/carbon-device-mgt-plugins/issues/613
8 years ago
ayyoob
20c3940ca4
made MonitoringTask to get config from device management service
8 years ago
ayyoob
db2ddc7bed
policy manager refactored to support tenancy
8 years ago
Ruwan
7619eabc87
Merge pull request #495 from rasika/release-2.0.x
...
IOTS-325: Fixing cannot delete a policy associated with a group
8 years ago
Rasika Perera
4cd2b94303
IOTS-325: Fixing cannot delete a policy associated with a group
8 years ago
Supun94
a831dc6a9a
Changing cdm-config file
8 years ago
Supun94
89410dfae4
Changing getEffectiveFeatures method
8 years ago
Supun94
2751d4b856
Code refactoring
8 years ago
Supun94
eb1575126f
Minor refactoring on policy merging
8 years ago
Supun94
451b2fd1dc
Minor refactoring on policy evaluation
8 years ago
Supun94
02fb952cc0
Minor refactoring on policy decision point
8 years ago
Supun94
35f3fcc8f9
Changed policy evaluation point
8 years ago
Supun94
62acc2ebf2
Adding merged policy evaluation service component
8 years ago
Supun94
936e71a743
Adding configurations for different policy evaluation service components
8 years ago
Supun94
272ba7b012
Changed getEffectiveFeatures method
8 years ago
Supun94
c91da9219d
fixed policy conflicts
8 years ago
geethkokila
2b7d5fd66b
Fixing the null pointer issue in policy manager
8 years ago
geethkokila
20ca76640d
Adding changes for the grouping and ownership changes
8 years ago
charitha
1bfba25c5e
Remove user list and role list attributes from group object
...
Move group components to same devicemgt package levels
8 years ago
charitha
5f68953b11
Merge branch 'master' into IoTS-1.0.0
...
# Conflicts:
# components/device-mgt/org.wso2.carbon.device.mgt.api/src/main/java/org/wso2/carbon/device/mgt/jaxrs/service/api/GroupManagementService.java
# components/device-mgt/org.wso2.carbon.device.mgt.api/src/main/java/org/wso2/carbon/device/mgt/jaxrs/service/api/admin/GroupManagementAdminService.java
# components/device-mgt/org.wso2.carbon.device.mgt.api/src/main/java/org/wso2/carbon/device/mgt/jaxrs/service/impl/GroupManagementServiceImpl.java
# components/device-mgt/org.wso2.carbon.device.mgt.api/src/main/java/org/wso2/carbon/device/mgt/jaxrs/service/impl/admin/GroupManagementAdminServiceImpl.java
# components/device-mgt/org.wso2.carbon.device.mgt.api/src/main/webapp/WEB-INF/cxf-servlet.xml
8 years ago
harshanl
370f6de260
Removed applied policy upon removal of the last policy applicable for a device
8 years ago
harshanl
036ed6fe41
Added POLICY_REVOKE operation upon deletion of the last policy
8 years ago
harshanl
73539362d4
Refactored PolicyAdministratorPointImpl
8 years ago
harshanl
6e1fdabaad
EMM-1342:Added policy revoke operation
8 years ago
harshanl
24c38602b8
Merge branch 'master' of https://github.com/wso2/carbon-device-mgt
8 years ago
harshanl
51910ee67a
EMM-1675:Added policy revoke operation
8 years ago
susinda
ca68181541
Fixing NPE of EMM-1715
8 years ago
hasuniea
2128f08658
fixing EMM-1750
8 years ago
kamidu
2f852d84f4
Fix for the issue : EMM policy updating issue
8 years ago
charitha
670ca7c228
Merge branch 'master' of https://github.com/wso2/carbon-device-mgt
...
# Conflicts:
# components/device-mgt/org.wso2.carbon.device.mgt.api/src/main/java/org/wso2/carbon/device/mgt/jaxrs/beans/BasePaginatedResult.java
# components/device-mgt/org.wso2.carbon.device.mgt.api/src/main/java/org/wso2/carbon/device/mgt/jaxrs/service/api/GroupManagementService.java
8 years ago
harshanl
4bcf350236
EMM-1678:Updated the oauth component versions
8 years ago
charitha
f22d392978
Upgrade to comply with latest CDMF changes
8 years ago
harshanl
f9ba45f439
Fixed the device status changing issue when there are multiple enrollments for the same device
8 years ago
harshanl
dd03d0b740
Added device status change upon inactivity mechanism
8 years ago
harshanl
1b6c7ea502
Refactored PolcyMgt component
8 years ago
harshanl
108ea98677
Refactor policy mgt components and fixed add operations for invalid devices from task service
8 years ago
harshanl
c967fc34d0
Fixed EMM-1513
8 years ago
harshanl
671ef77b63
Fixed EMM-1107 issue
8 years ago
hasuniea
6db619317c
fixing app-install issue
8 years ago
Prabath Abeysekara
cc90bef42b
Merge pull request #318 from Securepoint/master
...
Minor bug fixies and code improvements
8 years ago
Ace
07b12fe4ea
Bug fixes
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
Timo Briddigkeit
0ac4752b2b
Fixed null pointer dereference
8 years ago
Timo Briddigkeit
ee5b077e6a
Fixed various XML External Entity (XXE) attack vulnerabilities
8 years ago
prabathabey
9aa54f2ead
Improving policy management functionalities to use deviceType in place of deviceTypeId for persisting policy information
8 years ago
Chatura Dilan
2befefc967
Added OS build date
8 years ago
prabathabey
be7e63c390
merging rest-api-improvements branch to master
8 years ago
Chatura Dilan
24b462f4f4
Added is-active field to the Application
8 years ago