bump product version to 7.2.5.1
[LibreOffice.git] / ucb / source / ucp / cmis / certvalidation_handler.hxx
blob110bf78ca5a26a07a91694257d375e97c83e9927
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:
12 #pragma once
14 #if defined __GNUC__ && !defined __clang__
15 #pragma GCC diagnostic push
16 #pragma GCC diagnostic ignored "-Wdeprecated"
17 #pragma GCC diagnostic ignored "-Wunused-but-set-parameter"
18 #endif
19 #include <libcmis/libcmis.hxx>
20 #if defined __GNUC__ && !defined __clang__
21 #pragma GCC diagnostic pop
22 #endif
24 #include <com/sun/star/ucb/XCommandEnvironment.hpp>
26 namespace cmis
28 class CertValidationHandler : public libcmis::CertValidationHandler
30 const css::uno::Reference< css::ucb::XCommandEnvironment>& m_xEnv;
31 const css::uno::Reference< css::uno::XComponentContext >& m_xContext;
32 OUString m_sHostname;
34 public:
35 CertValidationHandler (
36 const css::uno::Reference< css::ucb::XCommandEnvironment>& xEnv,
37 const css::uno::Reference< css::uno::XComponentContext>& xContext,
38 const OUString& sHostname ):
39 m_xEnv( xEnv ), m_xContext( xContext ), m_sHostname( sHostname ) { }
41 bool validateCertificate( std::vector< std::string > certificates ) override;
45 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */