241409e6f412a62e38ca46fe6e0acbac6a48f089
[framework/web/wrt-plugins-common.git] / src / modules / API / Contact / ContactEmail.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        ContactEmail.h
18  * @author      Lukasz Marek (l.marek@samsung.com)
19  * @version     0.1
20  */
21
22 #ifndef WRTDEVICEAPIS_CONTACT_CONTACT_EMAIL_H_
23 #define WRTDEVICEAPIS_CONTACT_CONTACT_EMAIL_H_
24
25 #include <algorithm>
26 #include <vector>
27 #include <string>
28 #include <dpl/shared_ptr.h>
29
30 namespace WrtDeviceApis {
31 namespace Contact {
32 namespace Api {
33
34 class ContactEmail;
35
36 typedef DPL::SharedPtr<ContactEmail> ContactEmailPtr;
37 typedef std::vector<ContactEmailPtr> ContactEmailPtrList;
38
39 /* This object represents an email data of a contact */
40 class ContactEmail
41 {
42   public:
43
44     typedef enum
45     {
46         CONTACT_EMAIL_TYPE_PREF,
47         CONTACT_EMAIL_TYPE_WORK,
48         CONTACT_EMAIL_TYPE_HOME
49     } ContactEmailType;
50
51     ContactEmail();
52     ~ContactEmail();
53     std::string getEmail() const;
54     void setEmail(const std::string &value);
55     std::vector<ContactEmailType> getTypes() const;
56     void addType(ContactEmailType value);
57     void setTypes(const std::vector<ContactEmailType> value);
58     bool isTypeOf(ContactEmailType value) const;
59     //methods to use when object is used as filter, not email data container
60     ContactEmailType getTypeFilter() const;
61     void setTypeFilter(ContactEmailType value);
62     ContactEmailPtr clone() const;
63   private:
64     std::string m_email;
65     std::vector<ContactEmailType> m_types;
66 };
67
68 }
69 }
70 }
71
72 #endif // WRTDEVICEAPIS_CONTACT_CONTACT_EMAIL_H_