LibreOffice Module connectivity (master) 1
VGroup.hxx
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
20#pragma once
21
22#include <com/sun/star/sdbcx/XUsersSupplier.hpp>
23#include <com/sun/star/sdbcx/XAuthorizable.hpp>
24#include <com/sun/star/container/XNamed.hpp>
32#include <com/sun/star/lang/XServiceInfo.hpp>
33
34namespace connectivity::sdbcx
35 {
37
38 typedef ::cppu::WeakComponentImplHelper< css::sdbcx::XUsersSupplier,
39 css::sdbcx::XAuthorizable,
40 css::container::XNamed,
41 css::lang::XServiceInfo> OGroup_BASE;
42
44 public cppu::BaseMutex,
45 public OGroup_BASE,
46 public IRefreshableUsers,
48 public ODescriptor
49 {
50 protected:
51 // no Reference! see OCollection::acquire
52 std::unique_ptr<OUsers> m_pUsers;
53
54 using OGroup_BASE::rBHelper;
55
56 // OPropertyArrayUsageHelper
57 virtual ::cppu::IPropertyArrayHelper* createArrayHelper( ) const override;
58 // OPropertySetHelper
59 virtual ::cppu::IPropertyArrayHelper & SAL_CALL getInfoHelper() override;
60 public:
61 OGroup(bool _bCase);
62 OGroup( const OUString& Name, bool _bCase);
63 virtual ~OGroup() override;
65
66 // XInterface
67 virtual void SAL_CALL acquire() noexcept override;
68 virtual void SAL_CALL release() noexcept override;
69
70 //XInterface
71 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type & rType ) override;
72 //XTypeProvider
73 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
74
75 // ::cppu::OComponentHelper
76 virtual void SAL_CALL disposing() override;
77 // XPropertySet
78 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override;
79 // XUsersSupplier
80 virtual css::uno::Reference< css::container::XNameAccess > SAL_CALL getUsers( ) override;
81 // XAuthorizable
82 virtual sal_Int32 SAL_CALL getPrivileges( const OUString& objName, sal_Int32 objType ) override;
83 virtual sal_Int32 SAL_CALL getGrantablePrivileges( const OUString& objName, sal_Int32 objType ) override;
84 virtual void SAL_CALL grantPrivileges( const OUString& objName, sal_Int32 objType, sal_Int32 objPrivileges ) override;
85 virtual void SAL_CALL revokePrivileges( const OUString& objName, sal_Int32 objType, sal_Int32 objPrivileges ) override;
86
87 // XNamed
88 virtual OUString SAL_CALL getName( ) override;
89 virtual void SAL_CALL setName( const OUString& aName ) override;
90 };
91
92}
93
94
95/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual ~OGroup() override
std::unique_ptr< OUsers > m_pUsers
Definition: VGroup.hxx:52
#define OOO_DLLPUBLIC_DBTOOLS
Type
OCollection OUsers
Definition: VGroup.hxx:36
::cppu::WeakComponentImplHelper< css::sdbcx::XUsersSupplier, css::sdbcx::XAuthorizable, css::container::XNamed, css::lang::XServiceInfo > OGroup_BASE
Definition: VGroup.hxx:41