tizen 2.0 merge
[framework/appfw/vconf-internal-keys.git] / include / vconf-internal-admin-keys.h
1 /*
2  * vconf-internal-keys
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Hakjoo Ko <hakjoo.ko@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21
22 #ifndef __VCONF_INTERNAL_ADMIN_KEYS_H__
23 #define __VCONF_INTERNAL_ADMIN_KEYS_H__
24
25 /**
26  * This file defines keys and values.
27  *
28  * @file        vconf-internal-admin-keys.h
29  * @defgroup    vconf_internal_admin_key Definitions of internal shared Keys for admin
30  * @ingroup     vconf_internal_key
31  * @author      Inho Oh <inho48.oh@samsung.com>
32  * @version     0.1
33  * @brief       This file has the definitions of shared keys for admin \n
34  */
35
36 /* ========================== Admin Keys & Values ============================ */
37 /**
38  * @addtogroup vconf_internal_admin_key
39  * @{
40  * @brief Admin Keys & Values\n
41  *        Maintainer : Inho Oh <inho48.oh@samsung.com>
42  */
43
44 #define VCONFKEY_ADMIN_PREFIX                       "db/admin"
45
46 /**
47  * @brief Java Autotest url
48  *
49  */
50 #define VCONFKEY_ADMIN_INTNL_JAVA_AUTOTEST_URL      VCONFKEY_ADMIN_PREFIX"/autotest_url"
51
52 /**
53  * @brief User Agent
54  *
55  */
56 #define VCONFKEY_ADMIN_UAGENT                       VCONFKEY_ADMIN_PREFIX"/uagent"
57
58 /**
59  * @brief UA Profile 2G
60  *
61  */
62 #define VCONFKEY_ADMIN_UAPROF_URL_2G                VCONFKEY_ADMIN_PREFIX"/uaprof_url_2g"
63
64 /**
65  * @brief UA Profile 3G
66  *
67  */
68 #define VCONFKEY_ADMIN_UAPROF_URL_3G                VCONFKEY_ADMIN_PREFIX"/uaprof_url_3g"
69
70 /**
71  * @brief GCF Test mode flag
72  *
73  * VCONFKEY_ADMIN_GCF_OFF : GCF Test Off \n
74  * VCONFKEY_ADMIN_GCF_OFF : GCF Test On \n
75  */
76 #define VCONFKEY_ADMIN_GCF_TEST                     VCONFKEY_ADMIN_PREFIX"/gcf_test"
77 enum {
78         VCONFKEY_ADMIN_GCF_OFF = 0,
79         VCONFKEY_ADMIN_GCF_ON
80 };
81
82
83 /**
84  * @}
85  */
86
87 #endif  /* __VCONF_INTERNAL_ADMIN_KEYS_H__ */
88