tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Messaging / IMms.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       IMms.cpp
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #include "IMms.h"
25 #include "ValidityPeriodHours.h"
26 #include <dpl/log/log.h>
27
28 using namespace std;
29
30 namespace WrtDeviceApis {
31 namespace Messaging {
32 namespace Api {
33 IMms::IMms(const string& id) :
34     IMessage(MMS, id),
35     m_mmsType(MULTIPART_MIXED)
36 {
37     LogInfo("enter");
38 }
39
40 IMms::~IMms()
41 {
42     LogInfo("enter");
43 }
44
45 IMms::MMSType IMms::getMmsType() const
46 {
47     return m_mmsType;
48 }
49
50 void IMms::setMmsType(MMSType type)
51 {
52     m_mmsType = type;
53 }
54
55 IMms & IMms::operator <<(const VirtualMessage& msg)
56 {
57     setBody(msg.getBodyRef());
58     setFolderType(msg.getCurrentFolder());
59     setCurrentUserFolder(msg.getCurrentUserFolder());
60     setFrom(msg.getFromRef());
61     setDateTime(msg.getDateTime());
62     setSourceAddress(msg.getSourceAddress());
63     setToRecipients(msg.getToRecipients());
64     setValidityPeriodHours(msg.getValidityPeriodHours());
65
66     setAttachments(msg.getAttachments());
67     setBccRecipients(msg.getBccRecipients());
68     setCcRecipients(msg.getCcRecipients());
69     setSubject(msg.getSubjectRef());
70
71     return *this;
72 }
73 }}
74 }