KLDAP Library
ldapurl.h
00001 /* 00002 This file is part of libkldap. 00003 Copyright (c) 2004-2006 Szombathelyi György <gyurco@freemail.hu> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License as published by the Free Software Foundation; either 00008 version 2 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Library General Public License for more details. 00014 00015 You should have received a copy of the GNU Library General Public License 00016 along with this library; see the file COPYING.LIB. If not, write to 00017 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00018 Boston, MA 02110-1301, USA. 00019 */ 00020 00021 #ifndef KLDAP_LDAPURL_H 00022 #define KLDAP_LDAPURL_H 00023 00024 #include <QtCore/QMap> 00025 #include <QtCore/QStringList> 00026 00027 #include <kurl.h> 00028 00029 #include "ldapdn.h" 00030 #include "kldap_export.h" 00031 00032 namespace KLDAP { 00033 00042 class KLDAP_EXPORT LdapUrl : public KUrl 00043 { 00044 public: 00045 00050 typedef struct { 00051 QString value; 00052 bool critical; 00053 } Extension; 00054 00058 typedef enum { 00059 Base, 00060 One, 00061 Sub 00062 } Scope; 00063 00067 LdapUrl(); 00068 00072 explicit LdapUrl( const KUrl &url ); 00073 00077 LdapUrl( const LdapUrl &other ); 00078 00083 LdapUrl &operator=( const LdapUrl &other ); 00084 00088 virtual ~LdapUrl(); 00089 00093 void setDn( const LdapDN &dn ); 00094 00099 LdapDN dn() const; 00100 00104 void setAttributes( const QStringList &attributes ); 00105 00109 QStringList attributes() const; 00110 00114 void setScope( Scope scope ); 00115 00119 Scope scope() const; 00120 00124 void setFilter( const QString &filter ); 00125 00129 QString filter() const; 00130 00134 bool hasExtension( const QString &extension ) const; 00135 00139 Extension extension( const QString &extension ) const; 00140 00144 QString extension( const QString &extension, bool &critical ) const; 00145 00149 void setExtension( const QString &key, const Extension &extension ); 00150 00154 void setExtension( const QString &key, const QString &value, bool critical = false ); 00155 00159 void setExtension( const QString &key, int value, bool critical = false ); 00160 00164 void removeExtension( const QString &extension ); 00165 00169 void updateQuery(); 00170 00175 void parseQuery(); 00176 00177 private: 00178 class LdapUrlPrivate; 00179 LdapUrlPrivate *const d; 00180 }; 00181 00182 } 00183 00184 #endif
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:18:18 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu May 10 2012 22:18:18 by doxygen 1.8.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.