|
1 // Copyright (c) 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 */ |
|
20 |
|
21 #ifndef CMTPIMAGEDPSETOBJECTPROTECTION_H |
|
22 #define CMTPIMAGEDPSETOBJECTPROTECTION_H |
|
23 |
|
24 #include "cmtprequestprocessor.h" |
|
25 |
|
26 class CMTPTypeArray; |
|
27 class CMTPImageDataProvider; |
|
28 |
|
29 /** |
|
30 Defines generic file system object GetObjectReferences request processor. |
|
31 @internalTechnology |
|
32 */ |
|
33 class CMTPImageDpSetObjectProtection : public CMTPRequestProcessor |
|
34 { |
|
35 public: |
|
36 static MMTPRequestProcessor* NewL(MMTPDataProviderFramework& aFramework, MMTPConnection& aConnection, CMTPImageDataProvider& aDataProvider); |
|
37 ~CMTPImageDpSetObjectProtection(); |
|
38 |
|
39 private: |
|
40 CMTPImageDpSetObjectProtection(MMTPDataProviderFramework& aFramework, MMTPConnection& aConnection); |
|
41 void ConstructL(); |
|
42 |
|
43 private: // From CMTPRequestProcessor |
|
44 virtual TMTPResponseCode CheckRequestL(); |
|
45 virtual void ServiceL(); |
|
46 TBool DoHandleResponsePhaseL(); |
|
47 |
|
48 private: |
|
49 /** |
|
50 FLOGGER debug trace member variable. |
|
51 **/ |
|
52 TMTPTypeUint16 iMTPTypeUint16; |
|
53 RFs& iRfs; |
|
54 CMTPObjectMetaData* iObjMeta; |
|
55 __FLOG_DECLARATION_MEMBER_MUTABLE; |
|
56 }; |
|
57 |
|
58 #endif // CMTPIMAGEDPSETOBJECTPROTECTION_H |
|
59 |