1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
32 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
33 #include <com/sun/star/lang/XTypeProvider.hpp>
34 #include <com/sun/star/lang/XServiceInfo.hpp>
35 #include <com/sun/star/beans/XPropertySetInfo.hpp>
36 #include <cppuhelper/weak.hxx>
37 #include <osl/mutex.hxx>
38 #include <ucbhelper/macros.hxx>
40 //=========================================================================
42 #define PROPERTIES_MANAGER_SERVICE_NAME "com.sun.star.ucb.PropertiesManager"
44 //============================================================================
46 // class UcbPropertiesManager.
48 //============================================================================
50 class UcbPropertiesManager
:
51 public cppu::OWeakObject
,
52 public com::sun::star::lang::XTypeProvider
,
53 public com::sun::star::lang::XServiceInfo
,
54 public com::sun::star::beans::XPropertySetInfo
56 com::sun::star::uno::Sequence
< com::sun::star::beans::Property
>*
61 sal_Bool
queryProperty( const rtl::OUString
& rName
,
62 com::sun::star::beans::Property
& rProp
);
65 UcbPropertiesManager( const com::sun::star::uno::Reference
<
66 com::sun::star::lang::XMultiServiceFactory
>&
68 virtual ~UcbPropertiesManager();
80 virtual com::sun::star::uno::Sequence
<
81 com::sun::star::beans::Property
> SAL_CALL
83 throw( com::sun::star::uno::RuntimeException
);
84 virtual com::sun::star::beans::Property SAL_CALL
85 getPropertyByName( const rtl::OUString
& aName
)
86 throw( com::sun::star::beans::UnknownPropertyException
,
87 com::sun::star::uno::RuntimeException
);
88 virtual sal_Bool SAL_CALL
89 hasPropertyByName( const rtl::OUString
& Name
)
90 throw( com::sun::star::uno::RuntimeException
);
93 #endif /* !_UCBPROPS_HXX */
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */