|
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalTechnology |
|
19 @released |
|
20 */ |
|
21 |
|
22 #ifndef __MOBILITYTESTPROPERTYVALUE_H__ |
|
23 #define __MOBILITYTESTPROPERTYVALUE_H__ |
|
24 |
|
25 #include <e32cmn.h> |
|
26 |
|
27 const TUid KPropertyCatMsgTestUtilityServer2={0x102857AB}; |
|
28 |
|
29 static _LIT_SECURITY_POLICY_PASS(KAllowAllPolicy); |
|
30 |
|
31 enum TMyPropertyKeys {EMyPropertyCounter, EMyPropertyParamCall, EMyPropertyParamFlag}; |
|
32 |
|
33 const TInt KMobilityTestPropertyValueEnumerationOffset = 1000; |
|
34 |
|
35 enum TMobilityTestPropertyValue |
|
36 { |
|
37 ENTSInitialValueFlag=KMobilityTestPropertyValueEnumerationOffset, |
|
38 |
|
39 //MMobilityProtocolResp: |
|
40 ENTSPreferredCarrierUpgradeCall, |
|
41 ENTSPreferredCarrierDowngradeCall, |
|
42 ENTSNewCarrierActiveCall, |
|
43 ENTSErrorCall, |
|
44 |
|
45 //CActiveCommsMobilityApiExt: |
|
46 ENTSMigrateToPreferredCarrierFlag, |
|
47 ENTSIgnorePreferredCarrierFlag, |
|
48 ENTSNewCarrierAcceptedFlag, |
|
49 ENTSNewCarrierRejectedFlag, |
|
50 |
|
51 //CMobilityPolicyPlugin: |
|
52 ENTSPreferredCarrierUpgradeFlag, |
|
53 ENTSPreferredCarrierDowngradeFlag, |
|
54 ENTSCancelFlag, |
|
55 ENTSMigrationCompleteMigrateOKFlag, |
|
56 ENTSMigrationCompleteCouldNotReconnectFlag, |
|
57 ENTSMigrationCompleteMobilityErrorFlag, |
|
58 |
|
59 //MImMobilityPolicyHandler: |
|
60 ENTSAcceptImmediatelyCall, |
|
61 ENTSAcceptStopCurrentCall, |
|
62 ENTSAcceptCompleteCurrentCall, |
|
63 ENTSIgnoreCall |
|
64 }; |
|
65 |
|
66 #endif //__MOBILITYTESTPROPERTYVALUE_H__ |