Fixed update instance
[framework/osp/social.git] / src / FScl_ImAddressImpl.h
1 //
2 // Open Service Platform
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 * @file         FScl_ImAddressImpl.h
19 * @brief        This is the header file for the %_ImAddressImpl class.
20 *
21 * This header file contains the declarations of the %_ImAddressImpl class.
22 */
23 #ifndef _FSCL_INTERNAL_IM_ADDRESS_IMPL_H_
24 #define _FSCL_INTERNAL_IM_ADDRESS_IMPL_H_
25
26 #include <FBaseResult.h>
27 #include <FBaseObject.h>
28 #include <FBaseString.h>
29
30 namespace Tizen { namespace Social
31 {
32
33 class ImAddress;
34
35 class _OSP_EXPORT_ _ImAddressImpl
36         : public Tizen::Base::Object
37 {
38 public:
39         _ImAddressImpl(void);
40
41         _ImAddressImpl(const Tizen::Base::String& serviceProviderName, const Tizen::Base::String& imAddress);
42
43         _ImAddressImpl(const _ImAddressImpl& rhs);
44
45         virtual ~_ImAddressImpl(void);
46
47         virtual bool Equals(const Tizen::Base::Object& rhs) const;
48
49         virtual int GetHashCode(void) const;
50
51         Tizen::Base::String GetServiceProviderName(void) const;
52
53         Tizen::Base::String GetImAddress(void) const;
54
55         void SetServiceProviderName(const Tizen::Base::String& serviceProviderName);
56
57         result SetImAddress(const Tizen::Base::String& imAddress);
58
59         _ImAddressImpl& operator =(const _ImAddressImpl& rhs);
60
61         bool operator ==(const _ImAddressImpl& rhs) const;
62
63         bool operator !=(const _ImAddressImpl& rhs) const;
64
65         static const _ImAddressImpl* GetInstance(const ImAddress& imAddress);
66
67         static _ImAddressImpl* GetInstance(ImAddress& imAddress);
68
69 private:
70         Tizen::Base::String __serviceProviderName;
71         Tizen::Base::String __imAddress;
72 }; // _ImAddressImpl
73
74 }} // Tizen::Social
75
76 #endif // _FSCL_INTERNAL_IM_ADDRESS_IMPL_H_