/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include using namespace com::sun::star; using namespace ucbhelper; SimpleCertificateValidationRequest::SimpleCertificateValidationRequest( sal_Int32 lCertificateValidity, const css::uno::Reference& certificate, const OUString & hostname) { // Fill request... ucb::CertificateValidationRequest aRequest; aRequest.CertificateValidity = lCertificateValidity; aRequest.Certificate = certificate; aRequest.HostName = hostname; setRequest( uno::Any( aRequest ) ); setContinuations({ new InteractionAbort(this), new InteractionApprove(this) }); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ tro/cib/libreoffice-6-3 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/xmerge
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2011-10-08 10:56:27 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2011-10-08 10:56:27 +0200
commit8ac7152ca8b3b71c17ea55ec9e660804990ab86c (patch)
tree4f93fcb4969c6a4a350bc8fa5fe611fb8c255d57 /xmerge
parent7e9a597202568a812a6470939b0ad1a693685adc (diff)
Don't build jars when java is disabled