Update change log and spec for wrt-plugins-tizen_0.4.70
[framework/web/wrt-plugins-tizen.git] / src / Filesystem / EventMove.h
1 //
2 // Tizen Web Device API
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 #ifndef TIZENAPIS_FILESYSTEM_EVENTMOVE_H_
20 #define TIZENAPIS_FILESYSTEM_EVENTMOVE_H_
21
22 #include <dpl/shared_ptr.h>
23 #include <Commons/IEvent.h>
24 #include <Security.h>
25 #include "IPath.h"
26 #include "INode.h"
27
28 namespace DeviceAPI {
29 namespace Filesystem {
30 class EventMove : 
31         public WrtDeviceApis::Commons::IEvent<EventMove>,
32         public DeviceAPI::Common::SecurityAccessor
33 {
34   public:
35     /**
36      * Creates new event object.
37      * @param src Source path.
38      * @param dest Destination path.
39      * @return New object.
40      */
41     EventMove(const IPathPtr& src,
42             const IPathPtr& dest);
43
44     /**
45      * Gets destination path.
46      * @return Destination path.
47      */
48     IPathPtr getDestination() const;
49
50     /**
51      * Gets source path.
52      * @return Source path.
53      */
54     IPathPtr getSource() const;
55
56     /**
57      * Gets result node.
58      * @return Result node.
59      */
60     INodePtr getResult() const;
61
62     /**
63      * Sets result node.
64      * @param node Result node.
65      */
66     void setResult(const INodePtr& node);
67
68     /**
69      * Gets options.
70      * @return Options.
71      */
72     int getOptions() const;
73
74     /**
75      * Sets options.
76      * @param options Options.
77      */
78     void setOptions(int options);
79
80   private:
81     IPathPtr m_src;   ///< Source path.
82     IPathPtr m_dest;  ///< Destination path.
83     INodePtr m_result; ///< Result node.
84     int m_options;    ///< Options for copy action @see WrtPlugins::Api::Filesystem::Options.
85 };
86
87 typedef DPL::SharedPtr<EventMove> EventMovePtr;
88 } // Filesystem
89 } // TizenApis
90
91 #endif // TIZENAPIS_FILESYSTEM_EVENTMOVE_H_