Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / ucb / RemoteProxyContentProvider.idl
blobbb09062a5f534e15874b211ef04733f0f1080bf4
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:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef __com_sun_star_ucb_RemoteProxyContentProvider_idl__
21 #define __com_sun_star_ucb_RemoteProxyContentProvider_idl__
23 module com { module sun { module star { module ucb {
25 published interface XContentIdentifierFactory;
26 published interface XContentProvider;
27 published interface XParameterizedContentProvider;
29 /** A ContentProvider that wraps remote content providers that
30 (potentially) have been distributed to a UCB.
32 <p>Before trying to pass a request to a "real", underlying content provider
33 (which will most likely be a remote content provider distributed to this
34 UCB), this proxy first activates any remote content providers that have
35 been distributed here, but are still inactive (see
36 RemoteContentProviderAcceptor and
37 XRemoteContentProviderActivator for more information).
39 <p>The way this works might change, therefore this interface is marked as
40 deprecated.
42 @deprecated
44 published service RemoteProxyContentProvider
46 /** activates any potentially inactive remote content providers before
47 passing on requests to the underlying XContentProvider.
49 interface XContentProvider;
51 /** activates any potentially inactive remote content providers before
52 passing on requests to the underlying
53 XContentIdentifierFactory.
55 [optional] interface XContentIdentifierFactory;
57 /** allows this ContentProvider to adjust itself to special
58 needs.
60 [optional] interface XParameterizedContentProvider;
63 }; }; }; };
65 #endif
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */