/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ #include #include #include #include #include #include #include #include #include "ftpcontent.hxx" using namespace com::sun::star; using namespace ftp; // virtual uno::Sequence< beans::Property > FTPContent::getProperties( const uno::Reference< ucb::XCommandEnvironment > & /*xEnv*/) { #define PROPS_COUNT 8 static const beans::Property aPropsInfoTable[] = { beans::Property( "ContentType", -1, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::READONLY ), beans::Property( "IsDocument", -1, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::READONLY ), beans::Property( "IsFolder", -1, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::READONLY ), beans::Property( "Title", -1, cppu::UnoType::get(), beans::PropertyAttribute::BOUND // | beans::PropertyAttribute::READONLY ), beans::Property( "Size", -1, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::READONLY ), beans::Property( "DateCreated", -1, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::READONLY ), beans::Property( "IsReadOnly", -1, cppu::UnoType::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::READONLY ), beans::Property( "CreatableContentsInfo", -1, cppu::UnoType>::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::READONLY ) }; return uno::Sequence< beans::Property >( aPropsInfoTable, PROPS_COUNT ); } // virtual uno::Sequence< ucb::CommandInfo > FTPContent::getCommands( const uno::Reference< ucb::XCommandEnvironment > & /*xEnv*/ ) { // osl::MutexGuard aGuard( m_aMutex ); // Supported commands #define COMMAND_COUNT 8 static const ucb::CommandInfo aCommandInfoTable[] = { // Required commands ucb::CommandInfo( "getCommandInfo", -1, cppu::UnoType::get() ), ucb::CommandInfo( "getPropertySetInfo", -1, cppu::UnoType::get() ), ucb::CommandInfo( "getPropertyValues", -1, cppu::UnoType>::get() ), ucb::CommandInfo( "setPropertyValues", -1, cppu::UnoType>::get() ), ucb::CommandInfo( "open", -1, cppu::UnoType::get() ), ucb::CommandInfo( "insert", -1, cppu::UnoType::get() ), ucb::CommandInfo( "delete", -1, cppu::UnoType::get() ), ucb::CommandInfo( "createNewContent", -1, cppu::UnoType::get() ) }; return uno::Sequence< ucb::CommandInfo >( aCommandInfoTable, COMMAND_COUNT ); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */