From fc79b871ecfa351c5ac2587d95d8f65bae811621 Mon Sep 17 00:00:00 2001 From: Mihai Varga Date: Thu, 31 Jul 2014 11:20:37 +0300 Subject: IDL definition for the auth fallback request Change-Id: Id47bf660c44e2df54c21b9b945b4be57799e4ec6 --- offapi/UnoApi_offapi.mk | 1 + .../sun/star/ucb/AuthenticationFallbackRequest.idl | 35 ++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 offapi/com/sun/star/ucb/AuthenticationFallbackRequest.idl (limited to 'offapi') diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk index 781a9baae8c7..680a69251876 100644 --- a/offapi/UnoApi_offapi.mk +++ b/offapi/UnoApi_offapi.mk @@ -3797,6 +3797,7 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/text,\ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/ucb,\ AlreadyInitializedException \ AuthenticationRequest \ + AuthenticationFallbackRequest \ CheckinArgument \ CertificateValidationRequest \ Command \ diff --git a/offapi/com/sun/star/ucb/AuthenticationFallbackRequest.idl b/offapi/com/sun/star/ucb/AuthenticationFallbackRequest.idl new file mode 100644 index 000000000000..c92660e19107 --- /dev/null +++ b/offapi/com/sun/star/ucb/AuthenticationFallbackRequest.idl @@ -0,0 +1,35 @@ +/* -*- 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/. + * + */ +#ifndef __com_sun_star_ucb_AuthenticationFallbackRequest_idl__ +#define __com_sun_star_ucb_AuthenticationFallbackRequest_idl__ + +#include + +module com { module sun { module star { module ucb { + +/** An interaction continuation handing back some authentication data. +*/ +published exception AuthenticationFallbackRequest: com::sun::star::task::ClassifiedInteractionRequest +{ + /** Instructions to be followed by the user + */ + string instructions; + + /** url to be opened in browser + */ + string url; +}; + + +}; }; }; }; + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit