Beta merge 2
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Account / IEventGetServiceTypeById.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  * @author      jihwa park (jh7979.park@samsung.com)
19  * @author      Sangtai Kim
20  * @version     0.1
21  * @brief
22  */
23
24 #ifndef _ABSTRACT_LAYER_IEVENT_GET_SERVICETYPE_BY_ID_H_
25 #define _ABSTRACT_LAYER_IEVENT_GET_SERVICETYPE_BY_ID_H_
26
27 #include <dpl/shared_ptr.h>
28 #include <Commons/IEvent.h>
29 #include "EventAccount.h"
30 #include "AccountServiceTypeProperty.h"
31
32 namespace TizenApis {
33         namespace Api {
34                 namespace Account {
35                         class IEventGetServiceTypeById: public WrtDeviceApis::Commons::IEvent<IEventGetServiceTypeById> {
36                                         EventAccountPtr m_event;
37
38                                         AccountServiceTypePropertyPtr m_accountServiceTypePropertyPtr;
39
40                                         bool m_result;
41                                 public:
42                                         void setResult(bool value) {
43                                                 m_result = value;
44                                         }
45                                         bool getResult() const {
46                                                 return m_result;
47                                         }
48                                         void setEvent(EventAccountPtr value) {
49                                                 m_event = value;
50                                         }
51                                         EventAccountPtr getEvent() const {
52                                                 return m_event;
53                                         }
54
55                                         AccountServiceTypePropertyPtr getAccountServiceTypeProperty(){
56                                                 return m_accountServiceTypePropertyPtr;
57                                         }
58
59                                         void setAccountServiceTypeProperty(AccountServiceTypePropertyPtr value){
60                                                 m_accountServiceTypePropertyPtr = value;
61                                         }
62
63                                         IEventGetServiceTypeById() :
64                                                         m_event(NULL), m_result(false) {
65                                         }
66                                         ~IEventGetServiceTypeById() {
67                                         }
68                                         virtual void clearOnCancel() {
69                                         }
70                         };
71
72                         typedef DPL::SharedPtr<IEventGetServiceTypeById> IEventGetServiceTypeByIdPtr;
73                 }
74         }
75 }
76 #endif /* _ABSTRACT_LAYER_IEVENT_GET_SERVICETYPE_BY_ID_H_ */