equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-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 entrystatusstep.h |
|
18 @internalTechnology |
|
19 */ |
|
20 |
|
21 #ifndef __ENTRYSTATUSSTEP_H__ |
|
22 #define __ENTRYSTATUSSTEP_H__ |
|
23 |
|
24 #include "cachestepbase.h" |
|
25 #include "tlscacheclient.h" |
|
26 |
|
27 _LIT(KEntryStatus, "EntryStatus"); |
|
28 |
|
29 enum TCancelPoint |
|
30 { |
|
31 ENoCancel, |
|
32 EAfterOpen, |
|
33 EAfterGetState, |
|
34 EAfterChangeNotify |
|
35 }; |
|
36 |
|
37 class CEntryStatusStep : public CCacheStepBase |
|
38 { |
|
39 public: |
|
40 TVerdict doTestStepL(); |
|
41 TVerdict doTestStepPreambleL(); |
|
42 TVerdict doTestStepPostambleL(); |
|
43 |
|
44 CEntryStatusStep(); |
|
45 |
|
46 private: |
|
47 TCacheEntryState iState; |
|
48 TCacheEntryState iExpectedState; |
|
49 TBool iRequestChangeNotify; |
|
50 TBool iRequirePendingApproval; |
|
51 TCancelPoint iCancelPoint; |
|
52 }; |
|
53 |
|
54 |
|
55 #endif /* __ENTRYSTATUSSTEP_H__ */ |