tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Messaging / IEmailAccount.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  *
18  *
19  * @file       EmailAccount.h
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #ifndef IEMAILACCOUNT_H
25 #define IEMAILACCOUNT_H
26
27 #include <vector>
28 #include "EmailAccountInfo.h"
29
30 namespace WrtDeviceApis {
31 namespace Messaging {
32 namespace Api {
33 class IEmailAccount
34 {
35   public:
36     IEmailAccount();
37
38     virtual ~IEmailAccount();
39
40     /**
41      * get avialable emails accounts
42      */
43     virtual std::vector<EmailAccountInfo> getEmailAccounts() const = 0;
44
45     /**
46      * setter of current email account value
47      */
48     void setCurrentEmailAccount(const EmailAccountInfo& value);
49
50     /**
51      * getter of current email account value
52      */
53     EmailAccountInfo getCurrentEmailAccount() const;
54
55     /**
56      * check validity state
57      */
58     bool isCurrentAccountValid() const;
59
60     /**
61      * setter for validity state
62      */
63     void setCurrentAccountValid(bool state);
64
65   private:
66
67     /**
68      * abstract value of current email account
69      */
70     EmailAccountInfo m_currentAccount;
71
72     /**
73      * information if abstract message current account has been changed
74      * and need update in low level
75      */
76     bool m_validAccount;
77 };
78 }
79 }
80 }
81 #endif // IEMAILACCOUNT_H