wrt-plugins-tizen_0.4.23
[framework/web/wrt-plugins-tizen.git] / src / Messaging / SourceAddress.cpp
1 //
2 // Tizen Web Device API
3 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 #include "Commons/Exception.h"
19 #include "SourceAddress.h"
20 #include <Logger.h>
21
22 using namespace std;
23 using namespace WrtDeviceApis::Commons;
24
25 namespace DeviceAPI {
26 namespace Messaging {
27
28 SourceAddress::SourceAddress() :
29     m_validSourceAddress(false)
30 {
31 }
32
33 SourceAddress::~SourceAddress()
34 {
35 }
36
37 void SourceAddress::setSourceAddressValidity(bool state)
38 {
39     m_validSourceAddress = state;
40 }
41
42 bool SourceAddress::getSourceAddressValidity() const
43 {
44     return m_validSourceAddress;
45 }
46
47 std::string SourceAddress::getSourceAddress() const
48 {
49     return m_sourceAddress;
50 }
51
52 void SourceAddress::setSourceAddress(const Recipients& value)
53 {
54     if (value.getRecipientSize() != 1) {
55         LoggerE("wrong source address value");
56         Throw(WrtDeviceApis::Commons::InvalidArgumentException);
57     }
58     m_sourceAddress = value.getRecipient(0);
59     m_validSourceAddress = false;
60 }
61
62 void SourceAddress::setSourceAddress(const std::string& value)
63 {
64     m_sourceAddress = value;
65     m_validSourceAddress = false;
66 }
67 }
68 }