[Release] wrt-commons_0.2.139
[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 SetSecureByDefault(bool secureByDefault);
33
34     static void AddWhiteURI(const std::string &value, bool subDomain);
35
36     static void RemoveWhiteURI(const std::string &uri);
37
38     /**
39      * This method changes network access mode while roaming is enabled.
40      *
41      */
42     static void SetHomeNetworkDataUsage(NetworkAccessMode newMode);
43
44     /**
45      * This method changes network access mode while roaming is enabled.
46      *
47      */
48     static void SetRoamingDataUsage(NetworkAccessMode newMode);
49
50     static void SetCookieSharingMode(bool mode);
51
52   private:
53     GlobalDAO()
54     {}
55 };
56 } // namespace WrtDB
57
58 #endif /* WRT_SRC_CONFIGURATION_GLOBAL_DAO_H_ */