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