Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / ucb / source / ucp / cmis / certvalidation_handler.hxx
blobae46c8397f3c51f141ca7722f291b81e330a5c8e
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>
25 #include <utility>
27 namespace cmis
29 class CertValidationHandler : public libcmis::CertValidationHandler
31 const css::uno::Reference< css::ucb::XCommandEnvironment>& m_xEnv;
32 const css::uno::Reference< css::uno::XComponentContext >& m_xContext;
33 OUString m_sHostname;
35 public:
36 CertValidationHandler (
37 const css::uno::Reference< css::ucb::XCommandEnvironment>& xEnv,
38 const css::uno::Reference< css::uno::XComponentContext>& xContext,
39 OUString sHostname ):
40 m_xEnv( xEnv ), m_xContext( xContext ), m_sHostname(std::move( sHostname )) { }
42 bool validateCertificate( std::vector< std::string > certificates ) override;
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */