Remove build warning and add temporary getter of privacy name
[platform/framework/native/appfw.git] / src / security / FSec_PrivacyInfoImpl.cpp
1 //
2 // Open Service Platform
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file        FSec_PrivacyInfoImpl.cpp
20  * @brief       This is the implementation for the _PrivacyInfoImpl class.
21  */
22
23 #include <new>
24 #include <unique_ptr.h>
25 #include <FSecPrivacyInfo.h>
26 #include <FBaseSysLog.h>
27 #include <FSec_AccessController.h>
28 #include "FSec_PrivacyInfoImpl.h"
29
30 using namespace Tizen::Base;
31 using namespace Tizen::Base::Collection;
32 using namespace Tizen::Security;
33
34 namespace Tizen { namespace Security
35 {
36
37 _PrivacyInfoImpl::_PrivacyInfoImpl(void)
38         : __enabled(false)
39 {
40
41 }
42
43 _PrivacyInfoImpl::~_PrivacyInfoImpl(void)
44 {
45
46 }
47
48 result
49 _PrivacyInfoImpl::Construct(const Tizen::Base::String& privacyId, bool enable)
50 {
51         result r = E_SUCCESS;
52         __privacyId = privacyId;
53         __enabled = enable;
54         
55         return r;
56 }
57
58 String
59 _PrivacyInfoImpl::GetId(void) const
60 {
61         return __privacyId;
62 }
63
64 bool
65 _PrivacyInfoImpl::IsEnabled(void) const
66 {
67         return __enabled;
68 }
69
70 void
71 _PrivacyInfoImpl::SetEnabled(bool enable)
72 {
73         __enabled = enable;
74 }
75
76 String
77 _PrivacyInfoImpl::GetDisplayName(void) const
78 {
79         String privacyURI = L"http://tizen.org/privacy/";
80         String displayName;
81
82         __privacyId.SubString(privacyURI.GetLength(), displayName);
83
84         return displayName;
85 }
86
87 String
88 _PrivacyInfoImpl::GetDescription(void) const
89 {
90         String description("undefined");
91         return description;
92 }
93
94 }} // Tizen::Security