sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // CPassAllPolicy class sl@0: // sl@0: // sl@0: sl@0: #ifndef __SC_PASSALLPOLICY_H__ sl@0: #define __SC_PASSALLPOLICY_H__ sl@0: sl@0: #include //CBase sl@0: #include "D32Security.h" sl@0: sl@0: namespace DBSC sl@0: { sl@0: sl@0: /** sl@0: CPassAllPolicy class implements MPolicy interface. sl@0: It describes a "pass all" policy object and will be used for sl@0: non-secure and legacy databases. sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_CLASS(CPassAllPolicy) : public CBase, public MPolicy sl@0: { sl@0: public: sl@0: CPassAllPolicy(TPolicyObjType aPOType); sl@0: virtual ~CPassAllPolicy(); sl@0: virtual TBool Check(const RMessage2&, TPolicyType) const; sl@0: virtual TInt Get(TPolicyType, TSecurityPolicy& aPolicy) const; sl@0: DECLARE_DB_DUMP2(aFile) sl@0: sl@0: private: sl@0: TPolicyObjType iPOType; sl@0: sl@0: }; sl@0: sl@0: } //end of - namespace DBSC sl@0: sl@0: #endif//__SC_PASSALLPOLICY_H__