java.lang.Object | |
↳ | com.samsung.android.knox.dlp.DLPManagerPolicy |
Deprecated in API level 27
This class provides APIs for MDM administrators to configure Data Loss Prevention(DLP) on the device. It provides APIs to set configure the information and provide a list of applications (whitelist) that can make use of the DLP functionality
NOTE: : This API is not available since Android 12(deprecated in API level 27)
API level 19 |
KNOX 2.6 |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Deprecated
in API level 27
| |||||||||||
Deprecated
in API level 27
| |||||||||||
Deprecated
in API level 27
| |||||||||||
Deprecated
in API level 27
| |||||||||||
Deprecated
in API level 27
| |||||||||||
Deprecated
in API level 27
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Deprecated in API level 27
API to add list of applications to DLP whitelist.
list | List of objects of type DLPPackageInfo to be added in DLP whitelist |
---|
true
if success, false
if it failedSecurityException | If caller does not have required permissions |
---|
An administrator can use this API to add a list of applications in DLP whitelist which can access DLP files. There are two type of application, both App types can set DLP attribute(s) while creating sensitive contents, and also can access these DLP contents. However, additional Restriction Policy (clipboard, network access, and so on) is enforced on consumer apps to prevent data leakage from these type of apps. You can create the DLP package-info list of apps that needs to be added to DLP whitelist. Each DLP Package-info can consist of package name, app type (creator is 0, consumer is 1), and signature (optional). If "Type" is not set for any given package-info then by default app type considered as creator.
|
EnterpriseKnoxManager ekm = EnterpriseKnoxManager.getInstance(context); |
The use of this API requires the caller to have the "com.samsung.android.knox.permission.KNOX_DLP_MGMT" permission which has a protection level of signature. |
API level 19 |
KNOX 2.6 |
User Scope |
Deprecated in API level 27
API to get DLP configuration.
An administrator can use this API to get configuration for DLP
|
EnterpriseKnoxManager ekm = EnterpriseKnoxManager.getInstance(context); |
API level 19 |
KNOX 2.6 |
User Scope |
Deprecated in API level 27
API to get list of applications from DLP whitelist.
DLPPackageInfo
if succeeds, else null.An administrator can use this API to get a list of applications from DLP whitelist which can access DLP files.
|
EnterpriseKnoxManager ekm = EnterpriseKnoxManager.getInstance(context); |
API level 19 |
KNOX 2.6 |
User Scope |
Deprecated in API level 27
API to remove DLP files.
onlyExpired | If true then only expired DLP files will be removed; if false all DLP Files will be removed |
---|
true
if success, false
if it failedSecurityException | If caller does not have required permissions |
---|
An administrator can use this API to remove DLP files on device.
|
EnterpriseKnoxManager ekm = EnterpriseKnoxManager.getInstance(context); |
The use of this API requires the caller to have the "com.samsung.android.knox.permission.KNOX_DLP_MGMT" permission which has a protection level of signature. |
API level 19 |
KNOX 2.6 |
User Scope |
Deprecated in API level 27
API to remove list of applications from DLP whitelist.
list | List of String to be removed from DLP whitelist |
---|
true
if success, false
if it failedSecurityException | If caller does not have required permissions |
---|
An administrator can use this API to remove a list of appliations from DLP whitelist.
|
EnterpriseKnoxManager ekm = EnterpriseKnoxManager.getInstance(context); |
The use of this API requires the caller to have the "com.samsung.android.knox.permission.KNOX_DLP_MGMT" permission which has a protection level of signature. |
API level 19 |
KNOX 2.6 |
User Scope |
Deprecated in API level 27
API to set DLP configuration.
config | Bundle of configuration data to set |
---|
true
if success, false
if it failedSecurityException | If caller does not have required permissions |
---|
An administrator can use this API to set configuration for DLP.
|
EnterpriseKnoxManager ekm = EnterpriseKnoxManager.getInstance(context); |
The use of this API requires the caller to have the "com.samsung.android.knox.permission.KNOX_DLP_MGMT" permission which has a protection level of signature. |
API level 19 |
KNOX 2.6 |
User Scope |