]> err.no Git - sope/blob - sope-appserver/NGObjWeb/WebDAV/EOFetchSpecification+SoDAV.h
minor url optimization
[sope] / sope-appserver / NGObjWeb / WebDAV / EOFetchSpecification+SoDAV.h
1 /*
2   Copyright (C) 2000-2003 SKYRIX Software AG
3
4   This file is part of OGo
5
6   OGo 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   OGo 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 OGo; 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 // $Id$
22
23 #ifndef __NGObjWeb_EOFetchSpecification_SoDAV_H__
24 #define __NGObjWeb_EOFetchSpecification_SoDAV_H__
25
26 #import <EOControl/EOFetchSpecification.h>
27
28 @class NSString, NSArray;
29
30 /*
31   Additional WebDAV related methods for EOFetchSpecification. 
32   EOFetchSpecification is used to represent PROPFIND and SEARCH queries.
33   
34   If the selectedWebDAVPropertyNames (= the 'attributes' hint) is empty,
35   this designates that a "propall" query is to be done (a SELECT *).
36   
37   Note: the propertynames are given back as fully qualified XML names, eg
38     
39     {DAV:}getlastmodified
40     
41   The namespace is enclosed in the braces.
42   
43   Mapping of scope:
44                 depth      from
45     flat      - 1,noroot - 'shallow traversal of'
46     flat+self - 1        - 
47     self      - 0        - 
48     deep      - infinity - 'hierarchical traversal of'
49
50   Used hints:
51     hint         method
52     scope          - scopeOfWebDAVQuery
53     attributes     - selectedWebDAVPropertyNames
54     namesOnly      - queryWebDAVPropertyNamesOnly
55     bulkTargetKeys - davBulkTargetKeys
56 */
57
58 @interface EOFetchSpecification(SoDAV)
59
60 + (EOFetchSpecification *)parseWebDAVSQLString:(NSString *)_s;
61
62 - (NSArray *)selectedWebDAVPropertyNames;
63 - (NSString *)scopeOfWebDAVQuery; /* flat, deep, self, flat+self */
64 - (BOOL)queryWebDAVPropertyNamesOnly;
65 - (NSArray *)davBulkTargetKeys;
66
67 @end
68
69 #endif /* __NGObjWeb_EOFetchSpecification_SoDAV_H__ */