merge with master
[platform/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 class GlobalDAO : public GlobalDAOReadOnly
30 {
31   public:
32     static void SetDeveloperMode(bool mode);
33
34     static void SetSecureByDefault(bool secureByDefault);
35
36     static void setComplianceMode(bool mode);
37
38     static void setComplianceFakeImei(const std::string &imei);
39
40     static void setComplianceFakeMeid(const std::string &meid);
41
42     static void AddWhiteURI(const std::string &value, bool subDomain);
43
44     static void RemoveWhiteURI(const std::string &uri);
45
46     /**
47      * This method changes network access mode while roaming is enabled.
48      *
49      */
50     static void SetHomeNetworkDataUsage(NetworkAccessMode newMode);
51
52     /**
53      * This method changes network access mode while roaming is enabled.
54      *
55      */
56     static void SetRoamingDataUsage(NetworkAccessMode newMode);
57
58     static void SetCookieSharingMode(bool mode);
59
60   private:
61     GlobalDAO()
62     {}
63 };
64 } // namespace WrtDB
65
66 #endif /* WRT_SRC_CONFIGURATION_GLOBAL_DAO_H_ */