tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / offapi / com / sun / star / xml / crypto / NSSProfile.idl
blobcb22abc939ad14ec2dc2f59dbd25194dfda3f5f9
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 module com { module sun { module star { module xml { module crypto {
22 /**
23 @since LibreOffice 7.1
25 struct NSSProfile {
26 /** the name of the NSS profile
28 Normally the name will reflect the name of the Mozilla profile. But the
29 profile list also contains the following special entries: MANUAL and
30 MOZILLA_CERTIFICATE_FOLDER.
31 These will have a product type of MozillaProductType::Default and might
32 have an empty path, if that value is not available.
34 string Name;
36 /** the path to the NSS databases
38 string Path;
40 /** the type of the NSS profile
42 ::com::sun::star::mozilla::MozillaProductType Type;
45 } ; } ; } ; } ; } ;
47 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */