bump product version to 4.1.6.2
[LibreOffice.git] / xmlsecurity / source / xmlsec / nss / seinitializer_nssimpl.hxx
blobf379edc7772a90b46723395eb8fcba2ee9cae43f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _SEINITIALIZERIMPL_HXX
21 #define _SEINITIALIZERIMPL_HXX
23 #include <com/sun/star/xml/crypto/XXMLSecurityContext.hpp>
24 #include <com/sun/star/xml/crypto/XSEInitializer.hpp>
26 #include <cppuhelper/implbase1.hxx>
28 #include <libxml/tree.h>
30 #include "nssinitializer.hxx"
32 class SEInitializer_NssImpl : public cppu::ImplInheritanceHelper1
34 ONSSInitializer,
35 ::com::sun::star::xml::crypto::XSEInitializer
38 public:
39 SEInitializer_NssImpl( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > &rxContext );
40 virtual ~SEInitializer_NssImpl();
42 /* XSEInitializer */
43 virtual ::com::sun::star::uno::Reference<
44 ::com::sun::star::xml::crypto::XXMLSecurityContext >
45 SAL_CALL createSecurityContext( const OUString& )
46 throw (::com::sun::star::uno::RuntimeException);
48 virtual void SAL_CALL freeSecurityContext( const com::sun::star::uno::Reference<
49 com::sun::star::xml::crypto::XXMLSecurityContext >& securityContext )
50 throw (com::sun::star::uno::RuntimeException);
52 /* XServiceInfo */
53 virtual OUString SAL_CALL getImplementationName( )
54 throw (::com::sun::star::uno::RuntimeException);
56 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
57 throw (::com::sun::star::uno::RuntimeException);
59 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( )
60 throw (::com::sun::star::uno::RuntimeException);
63 OUString SEInitializer_NssImpl_getImplementationName()
64 throw ( ::com::sun::star::uno::RuntimeException );
66 sal_Bool SAL_CALL SEInitializer_NssImpl_supportsService( const OUString& ServiceName )
67 throw ( ::com::sun::star::uno::RuntimeException );
69 com::sun::star::uno::Sequence< OUString > SAL_CALL SEInitializer_NssImpl_getSupportedServiceNames( )
70 throw ( ::com::sun::star::uno::RuntimeException );
72 com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >
73 SAL_CALL SEInitializer_NssImpl_createInstance( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > & rxMSF)
74 throw ( ::com::sun::star::uno::Exception );
76 #endif
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */