wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / MessagePort / IRemoteMessagePort.h
1 //
2 // Tizen Web Device API
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        IRemoteMessagePort.h
20  * @author      Kisub Song (kisubs.song@samsung.com)
21  * @version     0.1
22  * @brief
23  */
24
25 #ifndef _API_MESSAGE_PORT_IREMOTE_MESSAGE_PORT_H_
26 #define _API_MESSAGE_PORT_IREMOTE_MESSAGE_PORT_H_
27
28 #include <dpl/shared_ptr.h>
29 #include <Commons/EventReceiver.h>
30 #include "EventRemoteMessagePortSendMessage.h"
31
32 namespace DeviceAPI {
33 namespace MessagePort {
34
35 class IRemoteMessagePort;
36 typedef DPL::SharedPtr<IRemoteMessagePort> RemoteMessagePortPtr;
37
38 class IRemoteMessagePort :
39                 public WrtDeviceApis::Commons::EventRequestReceiver< EventRemoteMessagePortSendMessage >
40 {
41 public:
42         IRemoteMessagePort();
43         virtual ~IRemoteMessagePort();
44
45         virtual void sendMessage(const EventRemoteMessagePortSendMessagePtr &event);
46
47         virtual std::string getMessagePortName() const = 0;
48         virtual void        setMessagePortName(const std::string &value) = 0;
49         virtual std::string getAppId() const = 0;
50         virtual void        setAppId(const std::string &value) = 0;
51         virtual bool        getIsTrusted() const = 0;
52         virtual void        setIsTrusted(const bool &value) = 0;
53
54 protected:
55         virtual void    OnRequestReceived(const EventRemoteMessagePortSendMessagePtr &event) = 0;
56 };
57
58 } // MessagePort
59 } // DeviceAPI
60
61 #endif // _API_MESSAGE_PORT_IREMOTE_MESSAGE_PORT_H_