Merge branch 'resource-manipulation' into 'master'
[platform/upstream/iotivity.git] / service / notification-manager / NotificationManager / src / RequestObject.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 #ifndef RH_REQUESTOBJECT_H_
22 #define RH_REQUESTOBJECT_H_
23
24 #include "ResourceClient.h"
25 #include "ResourceObject.h"
26
27 namespace OIC
28 {
29 namespace Service
30 {
31
32 class RequestObject
33 {
34 public:
35     typedef std::shared_ptr<RemoteResourceObject> RemoteObjectPtr;
36
37     enum class RequestMethod
38     {
39         Getter = 0,
40         Setter,
41         Delete
42     };
43
44     RequestObject() = default;
45     ~RequestObject() = default;
46
47     void invokeRequest(RemoteObjectPtr remoteObject, RequestMethod method,
48             const RCSRequest & pRequest, ResourceAttributes & resourceAttibutes);
49
50 private:
51     void setRequestCB(const ResourceAttributes & returnedAttributes,
52             ResourceAttributes & putAttibutes);
53 };
54
55 } /* namespace Service */
56 } /* namespace OIC */
57
58 #endif /* RH_REQUESTOBJECT_H_ */