1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_deployment_XPackageManagerFactory_idl
21 #define _com_sun_star_deployment_XPackageManagerFactory_idl
23 #include
<com
/sun
/star
/lang
/IllegalArgumentException.idl
>
24 #include
<com
/sun
/star
/deployment
/XPackageManager.idl
>
27 module com
{ module sun
{ module star
{ module deployment
{
29 /** The XPackageManagerFactory interface is used to obtain
30 XPackageManager instances.
32 You have to use the singleton
34 /singletons/com.sun.star.deployment.thePackageManagerFactory
41 Use XExtensionManager.
43 interface XPackageManagerFactory
45 /** Method to create (or reusing and already existing)
46 XPackageManager object to add or remove UNO packages
49 Packages for context strings <code>"user"</code> and
50 <code>"shared"</code> will be registered and
54 Document contexts (<code>"vnd.sun.star.tdoc:..."</code>) will get a
55 XPackageManager object that stores packages
56 in the given document and modify the manifest.
59 Context strings other than <code>"user"</code>, <code>"shared"</code>
60 <!-- or <code>vnd.sun.star.tdoc</code --> will last in an
61 com::sun::star::lang::IllegalArgumentException.
67 <li><code>"user"</code>
68 => persistent storage and registration into installation's
71 <li><code>"shared"</code>
72 => persistent storage and registration into installation's
75 <!-- li><code>"vnd.sun.star.tdoc:///4711/uno_packages"</code>
77 => transient storage in folder uno_packages
78 and transient registration
82 XPackageManager object
83 @throws ::com::sun::star::lang::IllegalArgumentException
84 in case of an invalid context
86 XPackageManager getPackageManager
( [in] string context
)
87 raises
(com
::sun
::star
::lang
::IllegalArgumentException
);
94 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */