Change from deprecated version 7.5 to 8.0 40/293840/1 accepted/tizen/8.0/unified/20231005.093604 accepted/tizen/unified/20230608.164327 tizen_8.0_m2_release
authoryeji01.kim <yeji01.kim@samsung.com>
Wed, 7 Jun 2023 01:20:19 +0000 (10:20 +0900)
committeryeji01.kim <yeji01.kim@samsung.com>
Wed, 7 Jun 2023 01:20:19 +0000 (10:20 +0900)
Change-Id: I0b0b369bddef2e20b2f954ea52771b09aa80a376

libs/dpm/device-policy-manager.h
libs/dpm/password.h
libs/dpm/restriction.h
libs/dpm/security.h
libs/dpm/zone.h

index fea852c..5e7a36c 100644 (file)
@@ -35,7 +35,7 @@ extern "C" {
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Called when a policy is changed.
  * @since_tizen 3.0
  * @param[in]   name The name of the policy
@@ -47,7 +47,7 @@ extern "C" {
 typedef void (*dpm_policy_changed_cb)(const char* name, const char* state, void *user_data);
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       The device policy manager handle
  * @details     The device policy manager handle is an abstraction of the
  *              logical connection between the device policy manager and
@@ -64,7 +64,7 @@ typedef void (*dpm_policy_changed_cb)(const char* name, const char* state, void
 typedef void* device_policy_manager_h;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Enumeration of device policy API errors
  * @since_tizen 3.0
  */
@@ -81,7 +81,7 @@ typedef enum {
 } dpm_error_type_e;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Creates the device policy manager handle.
  * @details     This API creates device policy manager handle required to
  *              the device policy APIs.
@@ -102,7 +102,7 @@ typedef enum {
 device_policy_manager_h dpm_manager_create(void) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Releases the device policy manager handle.
  * @details     This API must be called if interaction with the device
  *              policy manager is no longer required.
@@ -117,7 +117,7 @@ device_policy_manager_h dpm_manager_create(void) TIZEN_DEPRECATED_API;
 int dpm_manager_destroy(device_policy_manager_h handle) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Adds policy change callback to the device policy
  *              manager.
  * @details     This API can be used to subscribe policy change callback.
@@ -144,7 +144,7 @@ int dpm_add_policy_changed_cb(device_policy_manager_h handle,
                                                          void* user_data,
                                                          int* id) TIZEN_DEPRECATED_API;
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Removes policy change callback from the device policy
  *              manager.
  * @details     This API should be called if policy change subscription is no longer
@@ -163,7 +163,7 @@ int dpm_add_policy_changed_cb(device_policy_manager_h handle,
  */
 int dpm_remove_policy_changed_cb(device_policy_manager_h handle, int id) TIZEN_DEPRECATED_API;
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Called when a zone raises a signal.
  * @since_tizen 3.0
  * @param[in]   name The zone name
@@ -175,7 +175,7 @@ int dpm_remove_policy_changed_cb(device_policy_manager_h handle, int id) TIZEN_D
 typedef void(*dpm_signal_cb)(const char* name, const char* object, void *user_data);
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Adds signal callback.
  * @details     This API can be used to receive signals raised by the device policy manager.
  *              The callback specified to this function is automatically called when
@@ -200,7 +200,7 @@ int dpm_add_signal_cb(device_policy_manager_h handle, const char* signal,
                                          dpm_signal_cb callback, void* user_data, int* id) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Removes signal callback.
  * @details     This API removes signal callback.
  * @since_tizen 3.0
index 253f17a..6efe2c2 100644 (file)
@@ -34,7 +34,7 @@ extern "C" {
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Enumeration for dpm password quality type
  * @since_tizen 3.0
  */
@@ -48,7 +48,7 @@ typedef enum {
 } dpm_password_quality_e;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Enumeration for dpm password status type
  * @since_tizen 3.0
  */
@@ -70,7 +70,7 @@ typedef enum {
 } dpm_password_status_e;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets password quality.
  * @details     An administrator can set the password restrictions it is imposing.
@@ -93,7 +93,7 @@ typedef enum {
 int dpm_password_set_quality(device_policy_manager_h handle, int quality) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets password quality.
  * @details     An administrator can get the password restrictions it is imposing.
@@ -114,7 +114,7 @@ int dpm_password_set_quality(device_policy_manager_h handle, int quality) TIZEN_
 int dpm_password_get_quality(device_policy_manager_h handle, int *quality) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets password minimum length.
  * @details     Sets the minimum allowed password length. After setting this,
@@ -137,7 +137,7 @@ int dpm_password_get_quality(device_policy_manager_h handle, int *quality) TIZEN
 int dpm_password_set_minimum_length(device_policy_manager_h handle, int value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets password minimum length.
  * @details     Gets the minimum allowed password length.
@@ -158,7 +158,7 @@ int dpm_password_set_minimum_length(device_policy_manager_h handle, int value) T
 int dpm_password_get_minimum_length(device_policy_manager_h handle, int *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets minimum complex char in password.
  * @details     Complex characters are all non-alphabetic characters;
@@ -181,7 +181,7 @@ int dpm_password_get_minimum_length(device_policy_manager_h handle, int *value)
 int dpm_password_set_min_complex_chars(device_policy_manager_h handle, int value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets minimum complex char in password.
  * @details     Complex characters are all non-alphabetic characters;
@@ -203,7 +203,7 @@ int dpm_password_set_min_complex_chars(device_policy_manager_h handle, int value
 int dpm_password_get_min_complex_chars(device_policy_manager_h handle, int *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets maximum number of failed attempts before device is wiped.
  * @details     If user fails the last attempt, device will be wiped.
@@ -224,7 +224,7 @@ int dpm_password_get_min_complex_chars(device_policy_manager_h handle, int *valu
 int dpm_password_set_maximum_failed_attempts_for_wipe(device_policy_manager_h handle, int value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets maximum number of failed attempts before device is wiped.
  * @details     If user fails the last attempt, device will be wiped.
@@ -245,7 +245,7 @@ int dpm_password_set_maximum_failed_attempts_for_wipe(device_policy_manager_h ha
 int dpm_password_get_maximum_failed_attempts_for_wipe(device_policy_manager_h handle, int *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets the number of days password expires.
  * @details     An administrator can configure the password age to force
@@ -267,7 +267,7 @@ int dpm_password_get_maximum_failed_attempts_for_wipe(device_policy_manager_h ha
 int dpm_password_set_expires(device_policy_manager_h handle, int value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets the number of days password expires.
  * @details     An administrator can get the password age to force
@@ -289,7 +289,7 @@ int dpm_password_set_expires(device_policy_manager_h handle, int value) TIZEN_DE
 int dpm_password_get_expires(device_policy_manager_h handle, int *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets the number of min password history to avoid previous password.
  * @details     An administrator can configure the number of previous
@@ -312,7 +312,7 @@ int dpm_password_get_expires(device_policy_manager_h handle, int *value) TIZEN_D
 int dpm_password_set_history(device_policy_manager_h handle, int value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets the number of min password history to avoid previous password.
  * @details     An administrator can get the number of previous
@@ -335,7 +335,7 @@ int dpm_password_set_history(device_policy_manager_h handle, int value) TIZEN_DE
 int dpm_password_get_history(device_policy_manager_h handle, int *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets the required password pattern.
  * @details     An administrator can force User to enter password based on
@@ -361,7 +361,7 @@ int dpm_password_get_history(device_policy_manager_h handle, int *value) TIZEN_D
 int dpm_password_set_pattern(device_policy_manager_h handle, const char *pattern) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Resets password.
  * @details     This takes effect immediately to the device password.
@@ -382,7 +382,7 @@ int dpm_password_set_pattern(device_policy_manager_h handle, const char *pattern
 int dpm_password_reset(device_policy_manager_h handle, const char *password) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Enforces password change.
  * @details     An administrator can enforce password change. PasswordPolicy
@@ -403,7 +403,7 @@ int dpm_password_reset(device_policy_manager_h handle, const char *password) TIZ
 int dpm_password_enforce_change(device_policy_manager_h handle) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets the maximum number of seconds of inactivity time
  *              before the screen timeout occurs.
@@ -429,7 +429,7 @@ int dpm_password_enforce_change(device_policy_manager_h handle) TIZEN_DEPRECATED
 int dpm_password_set_max_inactivity_time_device_lock(device_policy_manager_h handle, int value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets the maximum number of seconds of inactivity time
  *              before the screen timeout occurs.
@@ -452,7 +452,7 @@ int dpm_password_set_max_inactivity_time_device_lock(device_policy_manager_h han
 int dpm_password_get_max_inactivity_time_device_lock(device_policy_manager_h handle, int *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets password status
  * @details     An administrator can know password status for this API.
@@ -473,7 +473,7 @@ int dpm_password_get_max_inactivity_time_device_lock(device_policy_manager_h han
 int dpm_password_set_status(device_policy_manager_h handle, dpm_password_status_e status) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets password status
  * @details     An administrator can know password status for this API.
@@ -491,7 +491,7 @@ int dpm_password_get_status(device_policy_manager_h handle, dpm_password_status_
 
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Removes all password patterns.
  * @details     An administrator can remove all password patterns.
@@ -511,7 +511,7 @@ int dpm_password_get_status(device_policy_manager_h handle, dpm_password_status_
 int dpm_password_delete_pattern(device_policy_manager_h handle) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets password pattern.
  * @details     This API can be used for applying complexity on new password value.
@@ -534,7 +534,7 @@ int dpm_password_delete_pattern(device_policy_manager_h handle) TIZEN_DEPRECATED
 int dpm_password_get_pattern(device_policy_manager_h handle, char **pattern) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets the maximum number of times a character can occur in
  *              the device password.
@@ -562,7 +562,7 @@ int dpm_password_get_pattern(device_policy_manager_h handle, char **pattern) TIZ
 int dpm_password_set_maximum_character_occurrences(device_policy_manager_h handle, int value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets the maximum number of times a character can occur in
  *              the device password.
@@ -587,7 +587,7 @@ int dpm_password_set_maximum_character_occurrences(device_policy_manager_h handl
 int dpm_password_get_maximum_character_occurrences(device_policy_manager_h handle, int *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets the maximum length of the numeric sequence
  *              which is allowed in the device password.
@@ -620,7 +620,7 @@ int dpm_password_get_maximum_character_occurrences(device_policy_manager_h handl
 int dpm_password_set_maximum_numeric_sequence_length(device_policy_manager_h handle, int value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Gets the maximum numeric sequence length allowed in
  *              the device password.
@@ -648,7 +648,7 @@ int dpm_password_set_maximum_numeric_sequence_length(device_policy_manager_h han
 int dpm_password_get_maximum_numeric_sequence_length(device_policy_manager_h handle, int *value) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       The password forbidden string list iterator handle
  * @since_tizen 3.0
  * @see         dpm_password_create_iterator()
@@ -658,7 +658,7 @@ int dpm_password_get_maximum_numeric_sequence_length(device_policy_manager_h han
 typedef void *dpm_password_iterator_h;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Creates a password forbidden string list iterator.
  * @details     The password forbidden string list iterator can be used to get all forbidden strings.
@@ -687,7 +687,7 @@ typedef void *dpm_password_iterator_h;
 dpm_password_iterator_h dpm_password_create_iterator(device_policy_manager_h handle) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Fetches a password forbidden string and forwards the iterator.
  * @details     This API returns a password forbidden string indicated by the iterator, and then
@@ -708,7 +708,7 @@ dpm_password_iterator_h dpm_password_create_iterator(device_policy_manager_h han
 int dpm_password_iterator_next(dpm_password_iterator_h iter, const char **forbidden_string) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Frees the password forbidden string iterator.
  * @details     This API frees the password forbidden string iterator. This API must be called
@@ -730,7 +730,7 @@ int dpm_password_iterator_next(dpm_password_iterator_h iter, const char **forbid
 int dpm_password_destroy_iterator(dpm_password_iterator_h iter) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Sets strings which are forbidden in the device password.
  * @details     Called by an admin that is managing the device to set strings that are forbidden to be used in the device password.
index bca740a..7c72cc4 100644 (file)
@@ -34,7 +34,7 @@ extern "C" {
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows the use of camera.
  * @details     An administrator can use this API to set whether the use of camera
@@ -57,7 +57,7 @@ extern "C" {
 int dpm_restriction_set_camera_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Check whether the use of camera is allowed or not.
  * @details     An administrator can use this API to check whether the use of camera
  *              is allowed or not.
@@ -75,7 +75,7 @@ int dpm_restriction_set_camera_state(device_policy_manager_h handle, int allow)
 int dpm_restriction_get_camera_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows the use of microphone.
  * @details     An administrator can use this API to set whether the use of microphone
@@ -99,7 +99,7 @@ int dpm_restriction_get_camera_state(device_policy_manager_h handle, int *is_all
 int dpm_restriction_set_microphone_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the use of microphone is allowed or not.
  * @details     An administrator can use this API to check whether the use of microphone
  *              is allowed of not.
@@ -117,7 +117,7 @@ int dpm_restriction_set_microphone_state(device_policy_manager_h handle, int all
 int dpm_restriction_get_microphone_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows user to change the location state.
  * @details     An administrator can use this API to allow or disallow user to change
@@ -140,7 +140,7 @@ int dpm_restriction_get_microphone_state(device_policy_manager_h handle, int *is
 int dpm_restriction_set_location_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Check whether user is allowed to change location state or not.
  * @details     An administrator can use this API to check whether user is allowed to change
  *              the location state or not.
@@ -158,7 +158,7 @@ int dpm_restriction_set_location_state(device_policy_manager_h handle, int allow
 int dpm_restriction_get_location_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows user to use usb mass storage.
  * @details     An administrator can use this API to set whether the usb mass
@@ -182,7 +182,7 @@ int dpm_restriction_get_location_state(device_policy_manager_h handle, int *is_a
 int dpm_restriction_set_external_storage_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the use of external storage is allowed or not.
  * @details     An administrator can use this API to check whether the use of external storage is
  *              allowed or not.
@@ -222,7 +222,7 @@ int dpm_restriction_get_external_storage_state(device_policy_manager_h handle, i
 int dpm_restriction_set_clipboard_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the clipboard access is allowed or not.
  * @details     An administrator can use this API to check whether the clipboard access
  *              is allowed or not.
@@ -240,7 +240,7 @@ int dpm_restriction_set_clipboard_state(device_policy_manager_h handle, int allo
 int dpm_restriction_get_clipboard_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows the usb debugging.
  * @details     An administrator can use this API to set whether the usb debugging
@@ -264,7 +264,7 @@ int dpm_restriction_get_clipboard_state(device_policy_manager_h handle, int *is_
 int dpm_restriction_set_usb_debugging_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the usb debugging is allowed or not.
  * @details     An administrator can use this API to check whether the usb debugging
  *              is allowed or not.
@@ -282,7 +282,7 @@ int dpm_restriction_set_usb_debugging_state(device_policy_manager_h handle, int
 int dpm_restriction_get_usb_debugging_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows user to change the Wi-Fi state.
  * @details     An administrator can use this API to allow or disallow user to
@@ -307,7 +307,7 @@ int dpm_restriction_get_usb_debugging_state(device_policy_manager_h handle, int
 int dpm_restriction_set_wifi_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the Wi-Fi state change is allowed or not.
  * @details     An administrator can use this API to check whether user is
  *              allowed to change Wi-Fi state or not.
@@ -325,7 +325,7 @@ int dpm_restriction_set_wifi_state(device_policy_manager_h handle, int allow) TI
 int dpm_restriction_get_wifi_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows user to change Wi-Fi hotspot state change.
  * @details     An administrator can use this API to allow or disallow user to change Wi-Fi
@@ -350,7 +350,7 @@ int dpm_restriction_get_wifi_state(device_policy_manager_h handle, int *is_allow
 int dpm_restriction_set_wifi_hotspot_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the the Wi-Fi hotspot state change is allowed or not.
  * @details     An administrator can use this API to check whether user is allowed to change
  *              Wi-Fi hotspot state or not.
@@ -370,7 +370,7 @@ int dpm_restriction_set_wifi_hotspot_state(device_policy_manager_h handle, int a
 int dpm_restriction_get_wifi_hotspot_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows user to change the bluetooth tethering state.
  * @details     An administrator can use this API to allow of disallow user
@@ -395,7 +395,7 @@ int dpm_restriction_get_wifi_hotspot_state(device_policy_manager_h handle, int *
 int dpm_restriction_set_bluetooth_tethering_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the bluetooth tethering state change is allowed.
  * @details     An administrator can use this API to check whether user is allowed
  *              to change bluetooth tethering state.
@@ -416,7 +416,7 @@ int dpm_restriction_set_bluetooth_tethering_state(device_policy_manager_h handle
 int dpm_restriction_get_bluetooth_tethering_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows user to change USB tethering settings.
  * @details     An administrator can use this API to allow or disallow user
@@ -441,7 +441,7 @@ int dpm_restriction_get_bluetooth_tethering_state(device_policy_manager_h handle
 int dpm_restriction_set_usb_tethering_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the USB tethering state change is allowed.
  * @details     An administrator can use this API to check whether the USB tethering state change
  *              is allowed or not.
@@ -461,7 +461,7 @@ int dpm_restriction_set_usb_tethering_state(device_policy_manager_h handle, int
 int dpm_restriction_get_usb_tethering_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows user to change the bluetooth state.
  * @details     An administrator can use this API to allow or disallow user
@@ -486,7 +486,7 @@ int dpm_restriction_get_usb_tethering_state(device_policy_manager_h handle, int
 int dpm_restriction_set_bluetooth_mode_change_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the the bluetooth state change is allowed of not.
  * @details     An administrator can use this API to check whether the bluetooth state change
  *              is allowed or not.
@@ -506,7 +506,7 @@ int dpm_restriction_set_bluetooth_mode_change_state(device_policy_manager_h hand
 int dpm_restriction_get_bluetooth_mode_change_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows the bluetooth desktop connectivity.
  * @details     An administrator can use this API to allow or disallow the bluetooth
@@ -533,7 +533,7 @@ int dpm_restriction_get_bluetooth_mode_change_state(device_policy_manager_h hand
 int dpm_restriction_set_bluetooth_desktop_connectivity_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the the Bluetooth desktop connectivity is allowed or not.
  * @details     An administrator can use this API to check whether the Bluetooth desktop
  *              connectivity is allowed or not.
@@ -553,7 +553,7 @@ int dpm_restriction_set_bluetooth_desktop_connectivity_state(device_policy_manag
 int dpm_restriction_get_bluetooth_desktop_connectivity_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows user to change the bluetooth pairing.
  * @details     An administrator can use this API to allow or disallow the bluetooth pairing.
@@ -577,7 +577,7 @@ int dpm_restriction_get_bluetooth_desktop_connectivity_state(device_policy_manag
 int dpm_restriction_set_bluetooth_pairing_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the the bluetooth pairing is allowed or not.
  * @details     An administrator can use this API to check whether the bluetooth
  *              pairing is allowed or not.
@@ -597,7 +597,7 @@ int dpm_restriction_set_bluetooth_pairing_state(device_policy_manager_h handle,
 int dpm_restriction_get_bluetooth_pairing_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows user to use of SMS or text messaging.
  * @details     An administrator can disable the text messaging capability
@@ -621,7 +621,7 @@ int dpm_restriction_get_bluetooth_pairing_state(device_policy_manager_h handle,
 int dpm_restriction_set_messaging_state(device_policy_manager_h handle, const char *sim_id, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the text messaging is allowed or not.
  * @details     An administrator can use this API to check whether text messaging capability
  *              is enabled or not.
@@ -639,7 +639,7 @@ int dpm_restriction_set_messaging_state(device_policy_manager_h handle, const ch
 int dpm_restriction_get_messaging_state(device_policy_manager_h handle, const char *sim_id, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows the access to POP or IMAP email.
  * @details     An administrator can disable the email capability without any user interaction
@@ -660,7 +660,7 @@ int dpm_restriction_get_messaging_state(device_policy_manager_h handle, const ch
 int dpm_restriction_set_popimap_email_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the access to POP or IMAP email is allowed or not.
  * @details     An administrator can use this API to check the access to POP or IMAP email
  *              is allowed or not.
@@ -677,7 +677,7 @@ int dpm_restriction_set_popimap_email_state(device_policy_manager_h handle, int
 int dpm_restriction_get_popimap_email_state(device_policy_manager_h handle, int *is_allowed) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Allows or disallows the use of web browser.
  * @details     An administrator can allows or disallow the use of web browser without
@@ -700,7 +700,7 @@ int dpm_restriction_get_popimap_email_state(device_policy_manager_h handle, int
 int dpm_restriction_set_browser_state(device_policy_manager_h handle, int allow) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks whether the use of web browser is allowed or not.
  * @details     An administrator can use this API to check whether the use of web browser
  *              is allowed or not.
index 6e623bd..1057373 100644 (file)
@@ -35,7 +35,7 @@ extern "C" {
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Locks device screen immediately.
  * @details     An administrator can use this API to lock the device screen
@@ -55,7 +55,7 @@ extern "C" {
 int dpm_security_lockout_screen(device_policy_manager_h handle) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Encrypts or decrypts internal storage.
  * @details     An administrator can use this API to enable full device
@@ -82,7 +82,7 @@ int dpm_security_lockout_screen(device_policy_manager_h handle) TIZEN_DEPRECATED
 int dpm_security_set_internal_storage_encryption(device_policy_manager_h handle, int encrypt) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks the internal storage encryption state.
  * @details     An administrator can use this API to check whether internal
  *              storage encryption is enabled.
@@ -101,7 +101,7 @@ int dpm_security_set_internal_storage_encryption(device_policy_manager_h handle,
 int dpm_security_is_internal_storage_encrypted(device_policy_manager_h handle, int *is_encrypted) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Encrypts or decrypts external storage.
  * @details     An administrator can use this API to enable external SD card
@@ -127,7 +127,7 @@ int dpm_security_is_internal_storage_encrypted(device_policy_manager_h handle, i
 int dpm_security_set_external_storage_encryption(device_policy_manager_h handle, int encrypt) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Checks the external storage encryption state.
  * @details     An administrator can use this API to check whether external
  *              storage encryption is enabled.
@@ -146,7 +146,7 @@ int dpm_security_set_external_storage_encryption(device_policy_manager_h handle,
 int dpm_security_is_external_storage_encrypted(device_policy_manager_h handle, int *is_encrypted) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Enumeration for device wipe type.
  * @since_tizen 3.0
  */
@@ -156,7 +156,7 @@ typedef enum {
 } dpm_security_wipe_type_e;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Wipes external memory, internal memory, or both selectively.
  * @details     Device Admin can use this API to wipe both SD card data
index ac3cb82..1c12bd5 100644 (file)
@@ -34,7 +34,7 @@ extern "C" {
  */
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Creates a new zone.
  * @details     An administrator can use this API to create a container. Once the container
@@ -61,7 +61,7 @@ extern "C" {
 int dpm_zone_create(device_policy_manager_h handle, const char* name, const char* pkgname) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @partner
  * @brief       Removes existing zone.
  * @details     Administrator can use this API to remove zone. All file system objects
@@ -97,7 +97,7 @@ typedef enum {
 } dpm_zone_state_e;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Gets the zone state.
  * @details     This API can be used to get the state of the zone. The zone can
  *              have one of the three states(running, locked).
@@ -118,7 +118,7 @@ typedef enum {
 int dpm_zone_get_state(device_policy_manager_h handle, const char* name, dpm_zone_state_e *state) TIZEN_DEPRECATED_API;
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Called to get all the name of created zones.
  * @since_tizen 3.0
  * @param[in]   name The zone name
@@ -129,7 +129,7 @@ int dpm_zone_get_state(device_policy_manager_h handle, const char* name, dpm_zon
 typedef bool(*dpm_zone_foreach_name_cb)(const char* name, void *user_data);
 
 /**
- * @deprecated Deprecated since 7.5.
+ * @deprecated Deprecated since 8.0.
  * @brief       Retrieves all the name of created zones
  * @details     This API calls dpm_zone_foreach_cb() once for each zone name
  *              with traversing the created zones list.