LibreOffice Module dbaccess (master) 1
objectnameapproval.cxx
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
21
22#include <com/sun/star/lang/DisposedException.hpp>
23#include <com/sun/star/sdb/tools/XConnectionTools.hpp>
24#include <com/sun/star/sdb/CommandType.hpp>
25
26namespace dbaccess
27{
28
29 using ::com::sun::star::sdbc::XConnection;
30 using ::com::sun::star::uno::Reference;
31 using ::com::sun::star::lang::DisposedException;
32 using ::com::sun::star::sdb::tools::XConnectionTools;
33 using ::com::sun::star::uno::UNO_QUERY_THROW;
34 using ::com::sun::star::sdb::tools::XObjectNames;
35
36 namespace CommandType = com::sun::star::sdb::CommandType;
37
38 // ObjectNameApproval
39 ObjectNameApproval::ObjectNameApproval( const Reference< XConnection >& _rxConnection, ObjectType _eType )
40 {
41 mxConnection = _rxConnection;
43 }
44
46 {
47 }
48
49 void ObjectNameApproval::approveElement( const OUString& _rName )
50 {
51 Reference< XConnection > xConnection( mxConnection );
52 if ( !xConnection.is() )
53 throw DisposedException();
54
55 Reference< XConnectionTools > xConnectionTools( xConnection, UNO_QUERY_THROW );
56 Reference< XObjectNames > xObjectNames( xConnectionTools->getObjectNames(), css::uno::UNO_SET_THROW );
57 xObjectNames->checkNameForCreate( mnCommandType, _rName );
58 }
59
60} // namespace dbaccess
61
62/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
virtual ~ObjectNameApproval() override
css::uno::WeakReference< css::sdbc::XConnection > mxConnection
ObjectNameApproval(const css::uno::Reference< css::sdbc::XConnection > &_rxConnection, ObjectType _eType)
constructs the instance
virtual void approveElement(const OUString &_rName) override
approves a given element for insertion into the container