65eac9365140e48311d929e18746773a27921677
[framework/osp/nfc.git] / inc / FNetNfcINdefPushManagerListener.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 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  * @file    FNetNfcINdefPushManagerListener.h
19  * @brief   This is the header file for the %INdefPushManagerListener interface.
20  *
21  * This header file contains the declarations of the %INdefPushManagerListener interface.
22  */
23
24 #ifndef _FNET_NFC_INDEF_PUSH_MANAGER_LISTENER_H_
25 #define _FNET_NFC_INDEF_PUSH_MANAGER_LISTENER_H_
26
27 #include <FBaseRtIEventListener.h>
28 #include <FBaseResult.h>
29
30 namespace Tizen { namespace Net { namespace Nfc
31 {
32 /**
33  * @interface   INdefPushManagerListener
34  * @brief       This interface provides a listener for the events related to the %NfcPushManager.
35  * @since 2.0
36  *
37  * The %INdefPushManagerListener interface specifies the methods used for receiving the status of the pushed NDEF
38  * message asynchronously.
39  *
40  * For more information on the class features, see
41  * <a href="../org.tizen.native.appprogramming/html/guide/net/nfc.htm">NFC Guide</a>.
42  */
43 class _OSP_EXPORT_ INdefPushManagerListener
44         : virtual public Tizen::Base::Runtime::IEventListener
45 {
46 public:
47         /**
48          * This polymorphic destructor should be overridden if required. @n
49          * This way, the destructors of the derived classes are called when the destructor of this interface is called.
50          *
51          * @since 2.0
52          */
53         virtual ~INdefPushManagerListener(void) {}
54
55         /**
56          * Called when the push operation to the target device is completed.
57          *
58          * @since 2.0
59          *
60          * @param[in]   r                                       The result of pushed NDEF message @n
61          *                                                                      Following exceptions may be given through this parameter.
62          * @exception   E_SUCCESS                       The method is successful.
63          * @exception   E_NOT_RESPONDING        The device is not responding.
64          * @exception   E_OPERATION_FAILED      The operation has failed.
65          */
66         virtual void OnNdefPushMessageSent(result r) = 0;
67
68 protected:
69         //
70         // This method is for internal use only. Using this method can cause behavioral, security-related, and
71         // consistency-related issues in the application.
72         //
73         // The following methods are reserved, and the name of methods can be changed at any time without prior notice.
74         //
75         // @since 2.0
76         //
77         virtual void INdefPushManagerListener_Reserved1(void) {}
78
79         //
80         // This method is for internal use only. Using this method can cause behavioral, security-related, and
81         // consistency-related issues in the application.
82         //
83         // The following methods are reserved, and the name of methods can be changed at any time without prior notice.
84         //
85         // @since 2.0
86         //
87         virtual void INdefPushManagerListener_Reserved2(void) {}
88 }; // INdefPushManagerListener
89
90 } } } // Tizen::Net::Nfc
91
92 #endif // _FNET_NFC_INDEF_PUSH_MANAGER_LISTENER_H_