tizen 2.3.1 release
[framework/web/wearable/wrt-security.git] / mockups / AceDAOReadOnly_mock.cpp
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  * @author     Tomasz Swierczek (t.swierczek@samsung.com)
18  * @version    0.1
19  * @brief      ACE DAO read only mockup class
20  */
21 #include "AceDAOReadOnly_mock.h"
22
23 namespace AceDB {
24 OptionalExtendedPolicyResult AceDAOReadOnly::m_policyResult = ExtendedPolicyResult();
25 OptionalCachedPromptDecision AceDAOReadOnly::m_promptDecision =
26         OptionalCachedPromptDecision();
27 PreferenceTypes AceDAOReadOnly::m_devCapSetting =
28         PreferenceTypes::PREFERENCE_DEFAULT;
29 PreferenceTypes AceDAOReadOnly::m_widgetDevCapSetting =
30         PreferenceTypes::PREFERENCE_DEFAULT;
31 PreferenceTypesMap AceDAOReadOnly::m_devCapSettings = PreferenceTypesMap();
32 BaseAttributeSet AceDAOReadOnly::m_attributeSet = BaseAttributeSet();
33 BasePermissionList AceDAOReadOnly::m_widgetDevCapSettings = BasePermissionList();
34 RequestedDevCapsMap AceDAOReadOnly::m_devCapPermissions =
35         RequestedDevCapsMap();
36 FeatureNameVector AceDAOReadOnly::m_featureName;
37 std::string AceDAOReadOnly::m_guid = std::string();
38 };