Update wrt-commons_0.2.53
[framework/web/wrt-commons.git] / modules / widget_dao / include / dpl / wrt-dao-rw / global_dao.h
1 /*
2  * Copyright (c) 2011 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  * @file    global_dao.h
18  * @author  Pawel Sikorski (p.sikorski@samsung.com)
19  * @version 1.0
20  * @brief   This file contains the declaration of global dao
21  */
22
23 #ifndef WRT_SRC_CONFIGURATION_GLOBAL_DAO_H_
24 #define WRT_SRC_CONFIGURATION_GLOBAL_DAO_H_
25
26 #include <dpl/wrt-dao-ro/global_dao_read_only.h>
27
28 namespace WrtDB {
29
30 class GlobalDAO : public GlobalDAOReadOnly
31 {
32   public:
33     static void SetDeveloperMode(bool mode);
34
35     static void SetSecureByDefault(bool secureByDefault);
36
37     static void setComplianceMode(bool mode);
38
39     static void setComplianceFakeImei(const std::string &imei);
40
41     static void setComplianceFakeMeid(const std::string &meid);
42
43     static void AddWhiteURI(const std::string &value, bool subDomain);
44
45     static void RemoveWhiteURI(const std::string &uri);
46
47     /**
48      * This method changes network access mode while roaming is enabled.
49      *
50      */
51     static void SetHomeNetworkDataUsage(NetworkAccessMode newMode);
52
53     /**
54      * This method changes network access mode while roaming is enabled.
55      *
56      */
57     static void SetRoamingDataUsage(NetworkAccessMode newMode);
58
59     static void SetCookieSharingMode(bool mode);
60
61   private:
62     GlobalDAO()
63     {
64     }
65 };
66
67 } // namespace WrtDB
68
69 #endif /* WRT_SRC_CONFIGURATION_GLOBAL_DAO_H_ */