Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / offapi / com / sun / star / ucb / CheckinArgument.idl
blob08f6822a20d24a5a36110ee3dfda2a88f67372b1
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/.
8 */
9 #ifndef __com_sun_star_ucb_CheckinArgument_idl__
10 #define __com_sun_star_ucb_CheckinArgument_idl__
14 module com { module sun { module star { module ucb {
16 /** contains information needed to checkin a document.
18 <p>The checkin command is always called on the target private
19 working copy document.</p>
21 struct CheckinArgument
23 /** Tells whether to create a new major or minor version during the
24 checkin.
26 boolean MajorVersion;
28 /** Contains the version comment to set during the checkin.
30 string VersionComment;
32 /** contains the URL of the source of the action (e.g. the URL of
33 the temporary file to checkin).
35 string SourceURL;
37 /** contains the URL of the private working copy to checkin.
39 string TargetURL;
41 /** contains the title of the transferred object, if it is different
42 from the original one.
44 <p>If this field is filled, for example, a file will be renamed
45 while it is being checked in.</p>
47 string NewTitle;
49 /** contains the Mime-Type of the content to check-in as it may be
50 different from the original one.
52 string MimeType;
56 }; }; }; };
58 #endif
60 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */