tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / API / Messaging / CallbackNumber.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       CallbackNumber.cpp
20  * @author     Pawel Misiak (p.misiak@samsung.com)
21  * @version    0.1
22  * @brief
23  */
24 #include <dpl/log/log.h>
25 #include "CallbackNumber.h"
26 #include "CallbackNumber.h"
27
28 namespace WrtDeviceApis {
29 namespace Messaging{
30 namespace Api {
31
32 CallbackNumber::CallbackNumber() :
33     m_callbackNumber(""),
34     m_validCallbackNumber(false)
35 {
36 }
37
38 CallbackNumber::~CallbackNumber()
39 {
40 }
41
42 void CallbackNumber::setCallbackNumber(const std::string& value)
43 {
44     LogDebug("set callbackNumber=" << value);
45     m_callbackNumber = value;
46     m_validCallbackNumber = false;
47 }
48
49 std::string CallbackNumber::getCallbackNumber() const
50 {
51     return m_callbackNumber;
52 }
53
54 const std::string& CallbackNumber::getCallbackNumberRef() const
55 {
56     return m_callbackNumber;
57 }
58
59 bool CallbackNumber::isCallbackNumberValid() const
60 {
61     return m_validCallbackNumber;
62 }
63
64 void CallbackNumber::setCallbackNumberValidity(bool state)
65 {
66     m_validCallbackNumber = state;
67 }
68 }
69 }
70 }