Merge "Fix memory leaks in Locales" into tizen_2.1
[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 <FBaseUtilStringTokenizer.h>
28 #include <FSec_AccessController.h>
29 #include "FSec_PrivacyInfoImpl.h"
30
31 using namespace Tizen::Base;
32 using namespace Tizen::Base::Utility;
33 using namespace Tizen::Base::Collection;
34 using namespace Tizen::Security;
35
36 namespace Tizen { namespace Security
37 {
38
39 _PrivacyInfoImpl::_PrivacyInfoImpl(void)
40         : __enabled(false)
41 {
42
43 }
44
45 _PrivacyInfoImpl::~_PrivacyInfoImpl(void)
46 {
47
48 }
49
50 result
51 _PrivacyInfoImpl::Construct(const Tizen::Base::String& privacyId, bool enable)
52 {
53         result r = E_SUCCESS;
54         __privacyId = privacyId;
55         __enabled = enable;
56         
57         return r;
58 }
59
60 String
61 _PrivacyInfoImpl::GetId(void) const
62 {
63         return __privacyId;
64 }
65
66 bool
67 _PrivacyInfoImpl::IsEnabled(void) const
68 {
69         return __enabled;
70 }
71
72 void
73 _PrivacyInfoImpl::SetEnabled(bool enable)
74 {
75         __enabled = enable;
76 }
77
78 String
79 _PrivacyInfoImpl::GetDisplayName(void) const
80 {
81         String displayName;
82     StringTokenizer strTok(__privacyId, L"/");
83     while(strTok.HasMoreTokens() == true)
84     {
85         strTok.GetNextToken(displayName);
86     }
87
88         return displayName;
89 }
90
91 String
92 _PrivacyInfoImpl::GetDescription(void) const
93 {
94         String description("undefined");
95         return description;
96 }
97
98 }} // Tizen::Security