|
1 /* |
|
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: SPSettings class for Device Management VoIP Settings Adapter |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef CDMVOIPSPSETTINGS_H |
|
19 #define CDMVOIPSPSETTINGS_H |
|
20 |
|
21 #include <e32base.h> |
|
22 #include <e32cmn.h> |
|
23 |
|
24 /** |
|
25 * CDMVoIPSPSettings |
|
26 * Class for transiently holding Service Provider Setting values. |
|
27 * |
|
28 * @since S60 3.2 |
|
29 */ |
|
30 class CDMVoIPSPSettings: public CBase |
|
31 { |
|
32 public: |
|
33 static CDMVoIPSPSettings* NewL(); |
|
34 static CDMVoIPSPSettings* NewLC(); |
|
35 virtual ~CDMVoIPSPSettings(); |
|
36 |
|
37 private: |
|
38 CDMVoIPSPSettings(); |
|
39 void ConstructL(); |
|
40 |
|
41 public: // data |
|
42 |
|
43 /** |
|
44 * VoiceMailBox MWI URI. |
|
45 * Own. |
|
46 */ |
|
47 HBufC* iVmbxMwiUri; |
|
48 |
|
49 /** |
|
50 * VoiceMailBox listening address (URI). |
|
51 * Own. |
|
52 */ |
|
53 HBufC* iVmbxListenUri; |
|
54 |
|
55 /** |
|
56 * VoiceMailBox IAP ID. |
|
57 */ |
|
58 TUint32 iVmbxIapId; |
|
59 |
|
60 /** |
|
61 * VoiceMailBox Re-SUBSCRIBE interval. |
|
62 */ |
|
63 TInt iReSubscribeInterval; |
|
64 |
|
65 /** |
|
66 * VoiceMailBox SIP ID. |
|
67 */ |
|
68 TUint32 iVmbxSipId; |
|
69 |
|
70 /** |
|
71 * Service provider bookmark URI. |
|
72 * Own. |
|
73 */ |
|
74 HBufC* iServiceProviderBookmark; |
|
75 |
|
76 /** |
|
77 * Branding data URI. |
|
78 * Own. |
|
79 */ |
|
80 HBufC* iBrandingDataUri; |
|
81 |
|
82 /** |
|
83 * Presence profile ID. |
|
84 */ |
|
85 TUint32 iPresenceId; |
|
86 |
|
87 /** |
|
88 * RCSE profile ID. |
|
89 */ |
|
90 TUint32 iRcseProfileId; |
|
91 |
|
92 /** |
|
93 * Presence auto accept buddy subscription request. |
|
94 */ |
|
95 TInt iAutoAcceptBuddy; |
|
96 |
|
97 /** |
|
98 * Auto enable state of service. |
|
99 */ |
|
100 TInt iAutoEnableService; |
|
101 |
|
102 /** |
|
103 * Snap profile ID. |
|
104 */ |
|
105 TUint32 iSnapId; |
|
106 |
|
107 /** |
|
108 * IM enabled. |
|
109 */ |
|
110 TInt iImEnabled; |
|
111 }; |
|
112 |
|
113 #endif // CDMVOIPSPSETTINGS_H |
|
114 |
|
115 // End of file. |