Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Account / IEventGetServiceById.h
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 /*
19  * IEventGetServiceById.h
20  *
21  *  Created on: 2012. 2. 6.
22  *      Author: sangtai
23  */
24
25 #ifndef IEVENTGETSERVICEBYID_H_
26 #define IEVENTGETSERVICEBYID_H_
27
28 namespace TizenApis {
29         namespace Api {
30                 namespace Account {
31
32                         class IEventGetServiceById : public WrtDeviceApis::Commons::IEvent<IEventGetServiceById>{
33                                 public:
34                                         IEventGetServiceById(){
35                                         }
36                                         virtual ~IEventGetServiceById(){
37                                         }
38
39                                         AccountServicesPtr getAccountService(){
40                                                 return m_accountService;
41                                         }
42                                         void setAccountService(AccountServicesPtr value){
43                                                 m_accountService = value;
44                                         }
45
46                                         std::string getServiceId(){
47                                                 return m_serviceId;
48                                         }
49                                         void setServiceId(std::string value){
50                                                 m_serviceId = value;
51                                         }
52
53                                         void setResult(bool value){
54                                                 m_result = value;
55                                         }
56                                         bool getResult(){
57                                                 return m_result;
58                                         }
59
60                                 private :
61                                         bool m_result;
62                                         AccountServicesPtr m_accountService;
63                                         std::string m_serviceId;
64                         };
65
66                         typedef DPL::SharedPtr<IEventGetServiceById> IEventGetServiceByIdPtr;
67
68                 } /* namespace Account */
69         } /* namespace Api */
70 } /* namespace TizenApis */
71 #endif /* IEVENTGETSERVICEBYID_H_ */