add % before the privilege tag not to link to the linkage page
[platform/framework/native/nfc.git] / inc / FNetNfcINdefMessageDiscoveryEventListener.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    FNetNfcINdefMessageDiscoveryEventListener.h
19  * @brief   This is the header file for the %INdefMessageDiscoveryEventListener interface.
20  *
21  * This header file contains the declarations of the %INdefMessageDiscoveryEventListener interface.
22  */
23
24 #ifndef _FNET_NFC_INDEF_MESSAGE_DISCOVERY_EVENT_LISTENER_H_
25 #define _FNET_NFC_INDEF_MESSAGE_DISCOVERY_EVENT_LISTENER_H_
26
27 #include <FBaseRtIEventListener.h>
28
29 namespace Tizen { namespace Net { namespace Nfc
30 {
31
32 class NdefMessage;
33
34 /**
35  * @interface   INdefMessageDiscoveryEventListener
36  * @brief       This interface provides a listener for the events related to the NDEF message discovery.
37  *
38  * @since       2.0
39  *
40  * The %INdefMessageDiscoveryEventListener interface specifies the methods used for creating notifications about the NDEF message discovered from the 
41  * target tag.
42  *
43  * For more information on the class features, see
44  * <a href="../org.tizen.native.appprogramming/html/guide/net/nfc.htm">NFC Guide</a>.
45  */
46 class _OSP_EXPORT_ INdefMessageDiscoveryEventListener
47         : public Tizen::Base::Runtime::IEventListener
48 {
49 public:
50         /**
51          * This polymorphic destructor should be overridden if required. @n
52          * This way, the destructors of the derived classes are called when the destructor of this interface is called.
53          *
54          * @since       2.0
55          */
56         virtual ~INdefMessageDiscoveryEventListener(void) {}
57
58         /**
59          * Called to notify the application when an NDEF message, that includes the NDEF records with the specified filter 
60          * type, is detected.
61          *
62          * @since       2.0
63          *
64          * @param[in]   pMessage        The detected NDEF message
65          * @remarks     This method can be used for read-only access to the data on the target without opening a connection 
66          *              to it. @n
67          *              The input NdefMessage object must be deleted by the application after use, even outside this 
68          *              method. The NdefMessage::RemoveAllRecords() method must be called with @c true as the input value 
69          *              immediately before the NdefMessage object is deleted.
70          */
71         virtual void OnNdefMessageDetectedN(NdefMessage* pMessage) = 0;
72
73 protected:
74         //
75         // This method is for internal use only. Using this method can cause behavioral, security-related, and consistency-related issues in the application.
76         //
77         // This method is reserved and may change its name at any time without prior notice.
78         //
79         // @since    2.0
80         //
81         virtual void INdefMessageDiscoveryEventListener_Reserved1(void) {}
82
83         //
84         // This method is for internal use only. Using this method can cause behavioral, security-related, and consistency-related issues in the application.
85         //
86         // This method is reserved and may change its name at any time without prior notice.
87         //
88         // @since    2.0
89         //
90         virtual void INdefMessageDiscoveryEventListener_Reserved2(void) {}
91
92         //
93         // This method is for internal use only. Using this method can cause behavioral, security-related, and consistency-related issues in the application.
94         //
95         // This method is reserved and may change its name at any time without prior notice.
96         //
97         // @since    2.0
98         //
99         virtual void INdefMessageDiscoveryEventListener_Reserved3(void) {}
100 }; // INdefMessageDiscoveryEventListener
101
102 } } } // Tizen::Net::Nfc
103
104 #endif // _FNET_NFC_INDEF_MESSAGE_DISCOVERY_EVENT_LISTENER_H_