tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Messaging / ToRecipient.cpp
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       ToRecipient.cpp
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #include <dpl/log/log.h>
25 #include "ToRecipient.h"
26
27 using namespace std;
28
29 namespace WrtDeviceApis {
30 namespace Messaging {
31 namespace Api {
32 ToRecipient::ToRecipient() :
33     m_toRecipients(new Recipients())
34 {
35 }
36
37 ToRecipient::~ToRecipient()
38 {
39 }
40
41 void ToRecipient::setToValidity(bool state)
42 {
43     m_toRecipients->setValid(state);
44 }
45
46 bool ToRecipient::getToValidity() const
47 {
48     return m_toRecipients->isValid();
49 }
50
51 Recipients ToRecipient::getToRecipients() const
52 {
53     return *m_toRecipients;
54 }
55
56 RecipientsPtr ToRecipient::getToRecipientsPtr() const
57 {
58     return m_toRecipients;
59 }
60
61 void ToRecipient::appendToRecipients(const string & value)
62 {
63     m_toRecipients->appendRecipient(value);
64 }
65
66 void ToRecipient::appendToRecipients(const Recipients& value)
67 {
68     LogDebug("enter, recipientCount=" << value.getRecipientSize());
69     *m_toRecipients += value;
70 }
71
72 void ToRecipient::removeToRecipients(const Recipients& value)
73 {
74     *m_toRecipients -= value;
75 }
76
77 void ToRecipient::setToRecipients(const Recipients& value)
78 {
79     *m_toRecipients = value;
80 }
81 }}
82 }