6f80aab51410671d70a3a19709483b33997de222
[framework/web/wrt-plugins-common.git] / src / modules / API / Messaging / SourceAddress.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       SourceAddress.cpp
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #include <dpl/log/log.h>
25 #include "Commons/Exception.h"
26 #include "SourceAddress.h"
27
28 using namespace std;
29
30 namespace WrtDeviceApis {
31 namespace Messaging {
32 namespace Api {
33 SourceAddress::SourceAddress() :
34     m_validSourceAddress(false)
35 {
36 }
37
38 SourceAddress::~SourceAddress()
39 {
40 }
41
42 void SourceAddress::setSourceAddressValidity(bool state)
43 {
44     m_validSourceAddress = state;
45 }
46
47 bool SourceAddress::getSourceAddressValidity() const
48 {
49     return m_validSourceAddress;
50 }
51
52 std::string SourceAddress::getSourceAddress() const
53 {
54     return m_sourceAddress;
55 }
56
57 void SourceAddress::setSourceAddress(const Recipients& value)
58 {
59     if (value.getRecipientSize() != 1) {
60         LogError("wrong source address value");
61         Throw(Commons::InvalidArgumentException);
62     }
63     m_sourceAddress = value.getRecipient(0);
64     m_validSourceAddress = false;
65 }
66
67 void SourceAddress::setSourceAddress(const std::string& value)
68 {
69     m_sourceAddress = value;
70     m_validSourceAddress = false;
71 }
72 }}
73 }