Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Account / AccountServices.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 /**
18  * @file        AccountServices.cpp
19  * @author      Jihwa Park (jh7979.park@samsung.com)
20  * @author      Sangtai Kim
21  * @version     0.1
22  * @brief
23  */
24
25 #include "AccountServices.h"
26
27 namespace TizenApis {
28         namespace Api {
29                 namespace Account {
30
31                         AccountServices::AccountServices() {
32                         }
33
34                         AccountServices::~AccountServices() {
35                         }
36
37                         std::string AccountServices::getId() const{
38                                 return m_id;
39                         }
40                         void AccountServices::setId(const std::string &value){
41                                  m_id = value;
42                         }
43
44                         std::string AccountServices::getName() const{
45                                 return m_name;
46                         }
47                         void AccountServices::setName(const std::string &value){
48                                 m_name = value;
49                         }
50
51                         std::string AccountServices::getApplicationId() const{
52                                 return m_applicationId;
53                         }
54                         void AccountServices::setApplicationId(const std::string &value){
55                                 m_applicationId = value;;
56                         }
57
58                         std::string AccountServices::getDisplayName() const{
59                                 return m_displayName;
60                         }
61                         void AccountServices::setDisplayName(const std::string &value){
62                                 m_displayName = value;
63                         }
64
65                         std::string AccountServices::getIcon() const{
66                                 return m_icon;
67                         }
68                         void AccountServices::setIcon(const std::string &value){
69                                 m_icon = value;
70                         }
71
72                         std::string AccountServices::getAccountId() const{
73                                 return m_accountId;
74                         }
75                         void AccountServices::setAccountId(const std::string &value){
76                                  m_accountId = value;
77                         }
78
79                         std::string AccountServices::getServiceTypeId() const{
80                                 return m_serviceTypeId;
81                         }
82                         void AccountServices::setServiceTypeId(const std::string &value){
83                                 m_serviceTypeId = value;
84                         }
85
86                         std::string AccountServices::getProviderId() const{
87                                 return m_providerId;
88                         }
89                         void AccountServices::setProviderId(const std::string &value){
90                                 m_providerId = value;
91                         }
92
93                         std::vector<std::string> AccountServices::getTags() const{
94                                 return m_tags;
95                         }
96                         void AccountServices::setTags(const std::vector<std::string> &value){
97                                 m_tags = value;
98                         }
99
100                         std::string AccountServices::getSettings() const{
101                                 return m_setttings;
102                         }
103                         void AccountServices::setSettings(const std::string &value){
104                                 m_setttings = value;
105                         }
106
107                 } // Account
108         } // Api
109 }
110