usbengines/usbwatcher/inc/usbwatcherserversecuritypolicy.h
changeset 34 7858bc6ead78
parent 31 dfdd8240f7c8
child 35 9d8b04ca6939
--- a/usbengines/usbwatcher/inc/usbwatcherserversecuritypolicy.h	Fri May 14 16:51:51 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,74 +0,0 @@
-/*
-* Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:  Server security policy definitions
-*
-*/
-
- 
-#ifndef USBWATCHERSERVERSECURITYPOLICY_H
-#define USBWATCHERSERVERSECURITYPOLICY_H
-
-/**
- * USB Wathcer server security policy definitions
- */
-const TUint KUsbWatcherServerRangeCount = 2;
-
-const TInt KUsbWatcherServerRanges[ KUsbWatcherServerRangeCount ] = 
-	{
-	EUsbWatcherSetPersonality,        // NetworkControl 
-	EUsbWatcherSetPreviousPersonalityOnDisconnect + 1  
-	};
-
-/** 
- * Index numbers into KUsbWatcherServerElements[] 
- */
-const TInt KPolicyLocalServices = 0;
-const TInt KPolicyPass = 1;
-
-/**
- * Mapping IPCs to poicy element 
- */
-const TUint8 KUsbWatcherServerElementsIndex[ KUsbWatcherServerRangeCount ] = 
-    {
-    KPolicyLocalServices,
-    CPolicyServer::ENotSupported, 
-    };
-
-/** 
- * Individual policy elements 
- */
-const CPolicyServer::TPolicyElement KUsbWatcherServerElements[] = 
-    {
-    // the EFailClient means that the if the check fails the CheckFailed method
-    //with return KErrPermissionDenied 
-    { _INIT_SECURITY_POLICY_C1( ECapabilityLocalServices ), 
-            CPolicyServer::EFailClient },
-    { _INIT_SECURITY_POLICY_PASS },
-	};
-
-/** 
- * Main policy definition
- */
-const CPolicyServer::TPolicy KUsbWatcherServerPolicy = 
-    {
-    CPolicyServer::EAlwaysPass, //Specifies all connect attempts should pass 
-    KUsbWatcherServerRangeCount,
-    KUsbWatcherServerRanges,
-    KUsbWatcherServerElementsIndex,
-    KUsbWatcherServerElements,
-    };
-
-#endif //USBWATCHERSERVERSECURITYPOLICY_H
-
-// End of file