sync with tizen_2.0
[platform/framework/native/appfw.git] / inc / FAppIAppControlResponseListener.h
1 //
2 // Open Service Platform
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                        FAppIAppControlResponseListener.h
20  * @brief                       This is the header file for the %IAppControlResponseListener interface.
21  *
22  * This header file contains the declarations of the %IAppControlResponseListener interface.
23  */
24
25 #ifndef _FAPP_IAPP_CONTROL_RESPONSE_LISTENER_H_
26 #define _FAPP_IAPP_CONTROL_RESPONSE_LISTENER_H_
27
28 #include <FBaseRtIEventListener.h>
29
30 namespace Tizen { namespace Base {
31 class String;
32 namespace Collection {
33 class IMap;
34 }
35 }}
36
37 namespace Tizen { namespace App
38 {
39
40 /**
41 * @interface    IAppControlResponseListener
42 * @brief                This interface defines a listener for the AppControl response events.
43 *
44 * @since        2.0
45 *
46 * The %IAppControlResponseListener interface defines a listener for the AppControl response events.
47 */
48 class _OSP_EXPORT_ IAppControlResponseListener
49         : virtual public Tizen::Base::Runtime::IEventListener
50 {
51 public:
52         /**
53          * This polymorphic destructor should be overridden if required.
54          * This way, the destructors of the derived classes are called when the destructor of this interface is called.
55          *
56          * @since       2.0
57          */
58         virtual ~IAppControlResponseListener(void) {}
59
60         /**
61          * Called when the response for application control completion is received.
62          *
63          * @since       2.0
64          *
65          * @param[in]   appId                   The ID of the requested application
66          * @param[in]   operationId             The operation ID used in application control invocation
67          * @param[in]   appControlResult        The application control result
68          * @param[in]   pExtraData              The Tizen::Base::String key and %Tizen::Base::String value pair map of application result data
69          * @remarks     The application control completion result is received when the requested application control
70          *                      sends the result using AppControlProviderManager::SendAppControlResult().
71          * @see         AppControl
72          * @see         AppControlProviderManager::SendAppControlResult()
73          */
74         virtual void OnAppControlCompleteResponseReceived(const AppId& appId, const Tizen::Base::String& operationId, AppCtrlResult appControlResult, const Tizen::Base::Collection::IMap* pExtraData) = 0;
75
76         /**
77          * Called when the application control is about to start or to be canceled by the user resolution. @n
78          * The calling application can get the result of the resolution by implementing this empty body method.
79          *
80          * @since       2.0
81          *
82          * @param[in]   appId                   The ID of the requested application
83          * @param[in]   operationId             The operation ID used in application control invocation
84          * @param[in]   r                               The result of the application control start response @n
85          *                                                              The exception code may be given through this parameter.
86          * @exception   E_SUCCESS               The method is successful.
87          * @exception   E_OPERATION_CANCELED    The application control resolve request is canceled by a user operation.
88          * @exception   E_PRIVILEGE_DENIED      The application does not have the privilege to call this method.
89          * @exception   E_SYSTEM                A system error has occurred.
90          * @remarks             This method invoked only for the implicit AppControl resolution.
91          * @see AppControl
92          * @see AppControl::FindAndStart()
93          */
94         virtual void OnAppControlStartResponseReceived(const AppId& appId, const Tizen::Base::String& operationId, result r) {}
95
96 protected:
97         //
98         // This method is for internal use only.
99         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
100         //
101         // This method is reserved and may change its name at any time without prior notice.
102         //
103         // @since       2.0
104         //
105         virtual void IAppControlResponseListener_Reserved1(void) {}
106
107         //
108         // This method is for internal use only.
109         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
110         //
111         // This method is reserved and may change its name at any time without prior notice.
112         //
113         // @since       2.0
114         //
115         virtual void IAppControlResponseListener_Reserved2(void) {}
116
117         //
118         // This method is for internal use only.
119         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
120         //
121         // This method is reserved and may change its name at any time without prior notice.
122         //
123         // @since       2.0
124         //
125         virtual void IAppControlResponseListener_Reserved3(void) {}
126
127         //
128         // This method is for internal use only.
129         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
130         //
131         // This method is reserved and may change its name at any time without prior notice.
132         //
133         // @since       2.0
134         //
135         virtual void IAppControlResponseListener_Reserved4(void) {}
136
137         //
138         // This method is for internal use only.
139         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
140         //
141         // This method is reserved and may change its name at any time without prior notice.
142         //
143         // @since       2.0
144         //
145         virtual void IAppControlResponseListener_Reserved5(void) {}
146 }; // IAppControlResponseListener
147
148 } } // Tizen::App
149
150 #endif // _FAPP_IAPP_CONTROL_RESPONSE_LISTENER_H_