tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Messaging / EmailAccountInfo.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  * @author          Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
18  */
19
20 #ifndef WRTDEVICEAPIS_MESSAGING_EMAILACCOUNTINFO_H_
21 #define WRTDEVICEAPIS_MESSAGING_EMAILACCOUNTINFO_H_
22
23 #include <string>
24
25 namespace WrtDeviceApis {
26 namespace Messaging{
27 namespace Api {
28 class EmailAccountInfo
29 {
30   public:
31     EmailAccountInfo(int id,
32             const std::string& name,
33             const std::string& address);
34
35     EmailAccountInfo(const std::string& id,
36             const std::string& name,
37             const std::string& address);
38
39     int getIntId() const;
40
41     std::string getId() const;
42
43     std::string getName() const;
44
45     std::string getAddress() const;
46
47     bool operator==(const EmailAccountInfo& account) const;
48
49   private:
50     std::string m_id;
51     std::string m_name;
52     std::string m_address;
53 };
54 }
55 }
56 }
57 #endif // WRTDEVICEAPIS_MESSAGING_EMAILACCOUNTINFO_H_