]> err.no Git - sope/blob - sope-ldap/NGLdap/NGLdapURL.h
some code cleanups
[sope] / sope-ldap / NGLdap / NGLdapURL.h
1 /*
2   Copyright (C) 2000-2005 SKYRIX Software AG
3
4   This file is part of SOPE.
5
6   SOPE is free software; you can redistribute it and/or modify it under
7   the terms of the GNU Lesser General Public License as published by the
8   Free Software Foundation; either version 2, or (at your option) any
9   later version.
10
11   SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
12   WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
14   License for more details.
15
16   You should have received a copy of the GNU Lesser General Public
17   License along with SOPE; see the file COPYING.  If not, write to the
18   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19   02111-1307, USA.
20 */
21
22 #ifndef __NGLdapURL_H__
23 #define __NGLdapURL_H__
24
25 #import <Foundation/NSObject.h> // required by gstep-base
26 #import <Foundation/NSURL.h>
27
28 @class NSString, NSArray, NSHost, NSEnumerator;
29 @class NGLdapConnection, NGLdapEntry;
30
31 // ldap://hostport/dn[?attributes[?scope[?filter]]]
32
33 @interface NGLdapURL : NSURL < NSCopying >
34 {
35   NSString *host;
36   int      port;
37   NSString *base;
38   int      scope;
39   NSString *filter;
40   NSArray  *attributes;
41 }
42
43 + (id)ldapURLWithString:(NSString *)_url;
44 - (id)initWithString:(NSString *)_url; // designated initializer
45
46 /* accessors */
47
48 - (NSString *)hostName;
49 - (NSHost *)host;
50
51 - (int)port;
52 - (NSString *)baseDN;
53 - (int)scope;
54 - (NSString *)searchFilter;
55 - (NSArray *)attributes;
56
57 /* query */
58
59 - (NGLdapConnection *)openConnection;
60 - (NSEnumerator *)fetchEntries;
61 - (NGLdapEntry *)fetchEntry;
62
63 /* url */
64
65 - (NSString *)urlString;
66
67 @end
68
69 #endif /* __NGLdapURL_H__ */