]> err.no Git - sope/blob - sope-ldap/NGLdap/NGLdapAttribute.h
some code cleanups
[sope] / sope-ldap / NGLdap / NGLdapAttribute.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 __NGLdapAttribute_H__
23 #define __NGLdapAttribute_H__
24
25 #import <Foundation/NSObject.h>
26
27 @class NSString, NSArray, NSData, NSEnumerator;
28
29 @interface NGLdapAttribute : NSObject < NSCopying >
30 {
31   NSString *name;
32   NSArray  *values;
33   BOOL     didChange;
34 }
35
36 - (id)initWithAttributeName:(NSString *)_name;
37 - (id)initWithAttributeName:(NSString *)_name values:(NSArray *)_values;
38
39 /* attribute name operations */
40
41 - (NSString *)attributeName;
42
43 + (NSString *)baseNameOfAttributeName:(NSString *)_attrName;
44 - (NSString *)attributeBaseName;
45
46 + (NSArray *)subtypesOfAttributeName:(NSString *)_attrName;
47 - (NSArray *)subtypes;
48 - (BOOL)hasSubtype:(NSString *)_subtype;
49 - (NSString *)langSubtype;
50
51 /* values */
52
53 - (unsigned)count;
54
55 - (void)addValue:(NSData *)_value;
56 - (NSArray *)allValues;
57 - (NSEnumerator *)valueEnumerator;
58
59 - (void)addStringValue:(NSString *)_value;
60 - (NSArray *)allStringValues;
61 - (NSEnumerator *)stringValueEnumerator;
62 - (NSString *)stringValueAtIndex:(unsigned)_idx;
63
64 @end
65
66 #endif /* __NGLdapAttribute_H__ */