LibreOffice Module ucbhelper (master) 1
authenticationfallback.cxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 */
9
11#include <com/sun/star/ucb/AuthenticationFallbackRequest.hpp>
12
13using namespace com::sun::star;
14using namespace ucbhelper;
15
16AuthenticationFallbackRequest::AuthenticationFallbackRequest(
17 const OUString & rInstructions,
18 const OUString & rURL )
19{
20
21 ucb::AuthenticationFallbackRequest aRequest;
22 aRequest.instructions = rInstructions;
23 aRequest.url = rURL;
24
25 setRequest( uno::Any( aRequest ) );
27
29}
30
31/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
rtl::Reference< ucbhelper::InteractionAuthFallback > m_xAuthFallback
This class implements a standard interaction continuation, namely the interface XInteractionAbort.
void setRequest(const css::uno::Any &rRequest)
void setContinuations(const css::uno::Sequence< css::uno::Reference< css::task::XInteractionContinuation > > &rContinuations)
This method sets the continuations for the request.