merged tag ooo/OOO330_m14
[LibreOffice.git] / xmlsecurity / source / component / certificatecontainer.hxx
blob3bf11cd55d92ddbc887c306189c6e20feb827099
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 #ifndef _XCERTIFICATECONTAINER_HXX_
29 #define _XCERTIFICATECONTAINER_HXX_
31 #include <com/sun/star/lang/XServiceInfo.hpp>
32 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
33 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
34 #include <cppuhelper/factory.hxx>
35 #include <cppuhelper/implbase2.hxx>
37 #ifndef _XCERTIFICATECONTAINER_HPP_
38 #include <com/sun/star/security/XCertificateContainer.hpp>
39 #endif
41 #ifndef _CERTIFICATECONTAINERSTATUS_HPP_
42 #include <com/sun/star/security/CertificateContainerStatus.hpp>
43 #endif
46 #include <vector>
47 #include <map>
49 using namespace com::sun::star;
50 using namespace cppu;
51 using namespace ::com::sun::star::uno;
52 using namespace ::com::sun::star::lang;
54 class CertificateContainer : public ::cppu::WeakImplHelper2< ::com::sun::star::lang::XServiceInfo, ::com::sun::star::security::XCertificateContainer >
56 private:
57 typedef std::map< ::rtl::OUString, ::rtl::OUString > Map;
58 Map certMap;
59 Map certTrustMap;
61 ::sal_Bool SAL_CALL searchMap( const ::rtl::OUString & url, const ::rtl::OUString & certificate_name, Map &_certMap );
62 virtual ::sal_Bool SAL_CALL isTemporaryCertificate( const ::rtl::OUString & url, const ::rtl::OUString & certificate_name ) throw(::com::sun::star::uno::RuntimeException);
63 virtual ::sal_Bool SAL_CALL isCertificateTrust( const ::rtl::OUString & url, const ::rtl::OUString & certificate_name ) throw(::com::sun::star::uno::RuntimeException);
65 public:
67 CertificateContainer(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& ) {};
68 virtual ~CertificateContainer(){};
70 virtual ::sal_Bool SAL_CALL addCertificate( const ::rtl::OUString & url, const ::rtl::OUString & certificate_name, ::sal_Bool trust ) throw(::com::sun::star::uno::RuntimeException);
71 virtual ::security::CertificateContainerStatus SAL_CALL hasCertificate( const ::rtl::OUString & url, const ::rtl::OUString & certificate_name ) throw(::com::sun::star::uno::RuntimeException);
72 // provide factory
73 static ::rtl::OUString SAL_CALL
74 impl_getStaticImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
76 static ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
77 impl_getStaticSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException);
79 static ::com::sun::star::uno::Reference< ::com::sun::star::lang::XSingleServiceFactory > SAL_CALL
80 impl_createFactory( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& ServiceManager ) throw(::com::sun::star::uno::RuntimeException);
82 static ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL
83 impl_createInstance( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& xServiceManager ) throw( ::com::sun::star::uno::RuntimeException );
85 // XServiceInfo
86 virtual ::rtl::OUString SAL_CALL
87 getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
88 virtual ::sal_Bool SAL_CALL
89 supportsService( const ::rtl::OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException);
91 virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
92 getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException);
98 #endif