LibreOffice
LibreOffice 5.3 SDK API Reference
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Privilege.idl
Go to the documentation of this file.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
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  * This file incorporates work covered by the following license notice:
10  *
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 .
18  */
19 #ifndef __com_sun_star_sdbcx_Privilege_idl__
20 #define __com_sun_star_sdbcx_Privilege_idl__
21 
22  module com { module sun { module star { module sdbcx {
23 
24 
28 published constants Privilege
29 {
30 
33  const long SELECT = 0x00000001;
34 
37  const long INSERT = 0x00000002;
38 
41  const long UPDATE = 0x00000004;
42 
45  const long DELETE = 0x00000008;
46 
49  const long READ = 0x00000010;
50 
53  const long CREATE = 0x00000020;
54 
57  const long ALTER = 0x00000040;
58 
61  const long REFERENCE = 0x00000080;
62 
65  const long DROP = 0x00000100;
66 };
67 
68 
69 }; }; }; };
70 
71 /*===========================================================================
72 ===========================================================================*/
73 #endif
74 
75 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const short INSERT
One or more rows and/or columns have been inserted.
Definition: AccessibleTableModelChangeType.idl:51
const short UPDATE
Some of the table data has changed.
Definition: AccessibleTableModelChangeType.idl:67
const long REFERENCE
indicates that a user is allowed to set foreign keys for a table.
Definition: Privilege.idl:61
const long READ
specifies opening of an element for reading.
Definition: ElementModes.idl:40
const long CREATE
frame will be created if not found
Definition: FrameSearchFlag.idl:71
const short DELETE
One or more rows and/or columns have been deleted.
Definition: AccessibleTableModelChangeType.idl:58
const long DROP
indicates that a user is allowed to drop a definition object.
Definition: Privilege.idl:65
const long ALTER
indicates that a user is allowed to alter an existing object.
Definition: Privilege.idl:57
const long SELECT
indicates that a user is allowed to read the data.
Definition: Privilege.idl:33