office-gobmx/offapi/com/sun/star/ucb/AuthenticationFallbackRequest.idl
Miklos Vajna ca92bb9bef Marking as published was not intentional
Change-Id: Ic0d5ed7824f4897708a81617521367af61562401
2014-12-15 12:44:15 +01:00

37 lines
1,001 B
Text

/* -*- 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 <com/sun/star/task/ClassifiedInteractionRequest.idl>
module com { module sun { module star { module ucb {
/** An interaction continuation handing back some authentication data
@since LibreOffice 4.4
*/
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: */