signon
8.58
|
00001 /* -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 00002 /* 00003 * This file is part of signon 00004 * 00005 * Copyright (C) 2011 Canonical Ltd. 00006 * 00007 * Contact: Alberto Mardegan <alberto.mardegan@canonical.com> 00008 * 00009 * This library is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU Lesser General Public License 00011 * version 2.1 as published by the Free Software Foundation. 00012 * 00013 * This library is distributed in the hope that it will be useful, but 00014 * WITHOUT ANY WARRANTY; without even the implied warranty of 00015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00016 * Lesser General Public License for more details. 00017 * 00018 * You should have received a copy of the GNU Lesser General Public 00019 * License along with this library; if not, write to the Free Software 00020 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 00021 * 02110-1301 USA 00022 */ 00023 00024 #include "default-crypto-manager.h" 00025 00026 using namespace SignonDaemonNS; 00027 00028 DefaultCryptoManager::DefaultCryptoManager(QObject *parent): 00029 AbstractCryptoManager(parent) 00030 { 00031 } 00032 00033 DefaultCryptoManager::~DefaultCryptoManager() 00034 { 00035 } 00036 00037 bool DefaultCryptoManager::initialize(const QVariantMap &configuration) 00038 { 00039 m_storagePath = configuration.value(QLatin1String("StoragePath")).toString(); 00040 setFileSystemSetup(true); 00041 setFileSystemMounted(true); 00042 return true; 00043 } 00044 00045 QString DefaultCryptoManager::fileSystemMountPath() const 00046 { 00047 return m_storagePath; 00048 } 00049