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 .
21 #include <sal/config.h>
22 #include <rtl/ustring.hxx>
23 #include <com/sun/star/uno/Reference.hxx>
26 namespace com::sun::star::deployment
{
29 namespace com::sun::star::xml::dom
{
38 explicit UpdateData( css::uno::Reference
< css::deployment::XPackage
> xExt
):
39 bIsShared(false), aInstalledPackage(std::move(xExt
)) {};
41 //When entries added to the listbox then there can be one for the user update and one
42 //for the shared update. However, both list entries will contain the same UpdateData.
43 //isShared is used to indicate which one is used for the shared entry.
46 //The currently installed extension which is going to be updated. If the extension exist in
47 //multiple repositories then it is the one with the highest version.
48 css::uno::Reference
< css::deployment::XPackage
> aInstalledPackage
;
50 //The version of the update
51 OUString updateVersion
;
55 // The content of the update information.
56 //Only if aUpdateInfo is set then there is an online update available with a better version
57 //than any of the currently installed extensions with the same identifier.
58 css::uno::Reference
< css::xml::dom::XNode
> aUpdateInfo
;
59 //The URL of the locally downloaded extension. It will only be set if there were no errors
62 //The URL of the website where the download can be obtained.
67 //The locale extension which is used as update for the user or shared repository.
68 //If set then the data for the online update (aUpdateInfo, sLocalURL, sWebsiteURL)
70 css::uno::Reference
< css::deployment::XPackage
> aUpdateSource
;
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */