Add privilege names
[platform/core/test/security-tests.git] / src / security-manager-tests / common / privilege_names.h
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd. All rights reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16
17 #pragma once
18
19 namespace PrivilegeNames {
20
21 constexpr char PRIV_INTERNAL_AUDIO[] = "http://tizen.org/privilege/internal/device/audio";
22 constexpr char PRIV_INTERNAL_DISPLAY[] = "http://tizen.org/privilege/internal/device/display";
23 constexpr char PRIV_INTERNAL_USERMANAGEMENT[] = "http://tizen.org/privilege/internal/usermanagement";
24 constexpr char PRIV_INTERNAL_VIDEO[] = "http://tizen.org/privilege/internal/device/video";
25
26 constexpr char PRIV_ACCOUNT_READ[] = "http://tizen.org/privilege/account.read";
27 constexpr char PRIV_BLUETOOTH[] = "http://tizen.org/privilege/bluetooth";
28 constexpr char PRIV_CALENDAR_READ[] = "http://tizen.org/privilege/calendar.read";
29 constexpr char PRIV_CALENDAR_WRITE[] = "http://tizen.org/privilege/calendar.write";
30 constexpr char PRIV_CALLHISTORY_READ[] = "http://tizen.org/privilege/callhistory.read";
31 constexpr char PRIV_CAMERA[] = "http://tizen.org/privilege/camera";
32 constexpr char PRIV_CONTACTS_READ[] = "http://tizen.org/privilege/contacts.read";
33 constexpr char PRIV_CONTENT_WRITE[] = "http://tizen.org/privilege/content.write";
34 constexpr char PRIV_DATASHARING[] = "http://tizen.org/privilege/datasharing";
35 constexpr char PRIV_DISPLAY[] = "http://tizen.org/privilege/display";
36 constexpr char PRIV_EMAIL[] = "http://tizen.org/privilege/email";
37 constexpr char PRIV_EXTERNALSTORAGE[] = "http://tizen.org/privilege/externalstorage";
38 constexpr char PRIV_HEALTHINFO[] = "http://tizen.org/privilege/healthinfo";
39 constexpr char PRIV_INTERNET[] = "http://tizen.org/privilege/internet";
40 constexpr char PRIV_LED[] = "http://tizen.org/privilege/led";
41 constexpr char PRIV_LOCATION[] = "http://tizen.org/privilege/location";
42 constexpr char PRIV_MEDIASTORAGE[] = "http://tizen.org/privilege/mediastorage";
43 constexpr char PRIV_NFC[] = "http://tizen.org/privilege/nfc";
44 constexpr char PRIV_NOTEXIST[] = "http://tizen.org/privilege/notexist";
45 constexpr char PRIV_NOTIFICATION[] = "http://tizen.org/privilege/notification";
46 constexpr char PRIV_POWER[] = "http://tizen.org/privilege/power";
47 constexpr char PRIV_PUSH[] = "http://tizen.org/privilege/push";
48 constexpr char PRIV_SYSTEMMONITOR[] = "http://tizen.org/privilege/systemmonitor";
49 constexpr char PRIV_TELEPHONY[] = "http://tizen.org/privilege/telephony";
50 constexpr char PRIV_VOLUME_SET[] = "http://tizen.org/privilege/volume.set";
51 constexpr char PRIV_VPNSERVICE[] = "http://tizen.org/privilege/vpnservice";
52 constexpr char PRIV_WIFIDIRECT[] = "http://tizen.org/privilege/wifidirect";
53
54 }