[Resource-Encapsulation] Java SDK for resource-encapsulation layer
[platform/upstream/iotivity.git] / service / resource-encapsulation / sdk / java / jni / re / include / jni_re_setattributes_listener.h
1 /******************************************************************
2  *
3  * Copyright 2015 Samsung Electronics All Rights Reserved.
4  *
5  *
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  ******************************************************************/
20
21 /** @file   jni_re_setattributes_listener.h
22  *
23  *   @brief  This file contains JNI set attributes Listener class
24  */
25
26 #ifndef __JNI_RE_SET_ATTRIBUTES_LISTENER_H_
27 #define __JNI_RE_SET_ATTRIBUTES_LISTENER_H_
28
29 #include <jni.h>
30
31 #include "jni_re_jvm.h"
32 #include "jni_re_utils.h"
33 #include "jni_re_resource_attributes.h"
34
35 class JniRCSRemoteResourceObject;
36
37 /**
38  * @class   JniSetAttributesListener
39  * @brief   This class provides functions for handling the set attribute callback between the Java and native layer
40  *
41  */
42 class JniSetAttributesListener
43 {
44     public:
45         /**
46          * @brief constructor
47          */
48         JniSetAttributesListener(JNIEnv *env, jobject jListener,
49                                  JniRCSRemoteResourceObject *resource);
50
51         /**
52          * @brief destructor
53         */
54         ~JniSetAttributesListener();
55
56         /**
57          * @brief callback function that will be passed to Native layer
58         */
59         void onRemoteAttributesSetCallback(OIC::Service::RCSResourceAttributes attributes);
60
61     private:
62         jweak m_jwListener;
63         JniRCSRemoteResourceObject *m_ownerResource;
64         void checkExAndRemoveListener(JNIEnv *env);
65 };
66
67 #endif //__JNI_RE_SET_ATTRIBUTES_LISTENER_H_