2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 import lib
.MultiMethodTest
;
23 import com
.sun
.star
.lang
.XMultiServiceFactory
;
24 import com
.sun
.star
.ucb
.XRemoteContentProviderAcceptor
;
25 import com
.sun
.star
.ucb
.XRemoteContentProviderDoneListener
;
28 * Testing <code>com.sun.star.ucb.XRemoteContentProviderAcceptor</code>
31 * <li><code> addRemoteContentProvider()</code></li>
32 * <li><code> removeRemoteContentProvider()</code></li>
34 * Test is <b> NOT </b> multithread compilant. <p>
35 * @see com.sun.star.ucb.XRemoteContentProviderAcceptor
37 public class _XRemoteContentProviderAcceptor
extends MultiMethodTest
{
39 public XRemoteContentProviderAcceptor oObj
= null;
42 * The simple <code>XRemoteContentProviderDoneListener</code>
45 public class DoneListener
implements XRemoteContentProviderDoneListener
{
47 public void doneWithRemoteContentProviders
48 (XRemoteContentProviderAcceptor xRCPA
) {
50 public void disposing (com
.sun
.star
.lang
.EventObject obj
) {}
54 XRemoteContentProviderDoneListener aDoneListener
= new DoneListener();
57 * Adds a remote provider. <p>
58 * Has <b> OK </b> status if the method returns <code>true</code>.
60 public void _addRemoteContentProvider() {
63 String
[] template
= new String
[]{"file"};
64 res
= oObj
.addRemoteContentProvider("ContentID",(XMultiServiceFactory
)tParam
.getMSF(),
65 template
,aDoneListener
);
67 tRes
.tested("addRemoteContentProvider()",res
);
71 * Removes the remote provider added before. <p>
72 * Has <b> OK </b> status if the method returns <code>true</code>.
74 * The following method tests are to be completed successfully before :
76 * <li> <code> addRemoteContentProvider() </code> : rovider must
77 * be added first </li>
80 public void _removeRemoteContentProvider() {
81 requiredMethod("addRemoteContentProvider()") ;
85 res
= oObj
.removeRemoteContentProvider("ContentID");
86 tRes
.tested("removeRemoteContentProvider()",res
);