5051ff9a6c219a1910f0b6c6d49f16e1c7d137cc
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Messaging / StorageChangeMessage.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /**
17  * @file   StorageChangeMessage.h
18  * @author Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
19  */
20
21 #ifndef SRC_MODULES_TIZEN_MESSAGING_STORAGECHANGEMESSAGE_H_
22 #define SRC_MODULES_TIZEN_MESSAGING_STORAGECHANGEMESSAGE_H_
23
24 #include <string>
25 #include <DBus/Message.h>
26
27 namespace WrtDeviceApis {
28 namespace Messaging {
29
30 class StorageChangeMessage
31 {
32 public:
33     static StorageChangeMessage parse(const DBus::MessagePtr& message);
34
35     int getType() const;
36     int getAccountId() const;
37     int getMailId() const;
38     std::string getFolderName() const;
39
40     /**
41      * Depends on the type:
42      * - NOTI_MAIL_ADD: id of a thread
43      * - NOTI_MAIL_UPDATE: type of the change @see emf_mail_change_type_t
44      * @return Extra information.
45      */
46     int getExtra() const;
47
48 private:
49     StorageChangeMessage();
50
51 private:
52     int m_type;
53     int m_accountId;
54     int m_mailId;
55     std::string m_folderName;
56     int m_extra;
57 };
58
59 }
60 }
61
62 #endif