2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * @author Pawel Sikorski (p.sikorski@samsung.com)
20 * @brief This file contains the declaration of global dao
23 #ifndef WRT_SRC_CONFIGURATION_GLOBAL_DAO_H_
24 #define WRT_SRC_CONFIGURATION_GLOBAL_DAO_H_
26 #include <dpl/wrt-dao-ro/global_dao_read_only.h>
30 class GlobalDAO : public GlobalDAOReadOnly
33 static void SetDeveloperMode(bool mode);
35 static void SetSecureByDefault(bool secureByDefault);
37 static void setComplianceMode(bool mode);
39 static void setComplianceFakeImei(const std::string &imei);
41 static void setComplianceFakeMeid(const std::string &meid);
43 static void AddWhiteURI(const std::string &value, bool subDomain);
45 static void RemoveWhiteURI(const std::string &uri);
48 * This method changes network access mode while roaming is enabled.
51 static void SetHomeNetworkDataUsage(NetworkAccessMode newMode);
54 * This method changes network access mode while roaming is enabled.
57 static void SetRoamingDataUsage(NetworkAccessMode newMode);
59 static void SetCookieSharingMode(bool mode);
69 #endif /* WRT_SRC_CONFIGURATION_GLOBAL_DAO_H_ */