1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
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.
14  *
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).
20  *
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.
25  *
26  ************************************************************************/
27 
28 #ifndef _XCERTIFICATECONTAINER_HXX_
29 #define _XCERTIFICATECONTAINER_HXX_
30 
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>
36 
37 #ifndef _XCERTIFICATECONTAINER_HPP_
38 #include <com/sun/star/security/XCertificateContainer.hpp>
39 #endif
40 
41 #ifndef _CERTIFICATECONTAINERSTATUS_HPP_
42 #include <com/sun/star/security/CertificateContainerStatus.hpp>
43 #endif
44 
45 
46 #include <vector>
47 #include <map>
48 
49 using namespace com::sun::star;
50 using namespace cppu;
51 using namespace ::com::sun::star::uno;
52 using namespace ::com::sun::star::lang;
53 
54 class CertificateContainer : public ::cppu::WeakImplHelper2< ::com::sun::star::lang::XServiceInfo, ::com::sun::star::security::XCertificateContainer >
55 {
56     private:
57         typedef std::map< ::rtl::OUString, ::rtl::OUString > Map;
58         Map certMap;
59         Map certTrustMap;
60 
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);
64 
65     public:
66 
67         CertificateContainer(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory >& ) {};
68         virtual ~CertificateContainer(){};
69 
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);
75 
76 	static ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
77 					impl_getStaticSupportedServiceNames(  ) throw(::com::sun::star::uno::RuntimeException);
78 
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);
81 
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 );
84 
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);
90 
91 	virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL
92                                         getSupportedServiceNames(  ) throw(::com::sun::star::uno::RuntimeException);
93 
94 };
95 
96 
97 
98 #endif
99 
100