bump product version to 5.0.4.1
[LibreOffice.git] / ucb / source / ucp / webdav-neon / DAVTypes.hxx
blob2bf20c8aed3d8407a30c7281936e871559110aa8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef INCLUDED_UCB_SOURCE_UCP_WEBDAV_NEON_DAVTYPES_HXX
30 #define INCLUDED_UCB_SOURCE_UCP_WEBDAV_NEON_DAVTYPES_HXX
32 #include <config_lgpl.h>
33 #include <rtl/ustring.hxx>
34 #include <com/sun/star/uno/Any.hxx>
36 namespace webdav_ucp
38 /* RFC 2518
40 15.1 Class 1
42 A class 1 compliant resource MUST meet all "MUST" requirements in all
43 sections of this document.
45 Class 1 compliant resources MUST return, at minimum, the value "1" in
46 the DAV header on all responses to the OPTIONS method.
48 15.2 Class 2
50 A class 2 compliant resource MUST meet all class 1 requirements and
51 support the LOCK method, the supportedlock property, the
52 lockdiscovery property, the Time-Out response header and the Lock-
53 Token request header. A class "2" compliant resource SHOULD also
54 support the Time-Out request header and the owner XML element.
56 Class 2 compliant resources MUST return, at minimum, the values "1"
57 and "2" in the DAV header on all responses to the OPTIONS method.
60 struct DAVCapabilities
62 bool class1;
63 bool class2;
64 bool executable; // supports "executable" property (introduced by mod_dav)
66 DAVCapabilities() : class1( false ), class2( false ), executable( false ) {}
69 enum Depth { DAVZERO = 0, DAVONE = 1, DAVINFINITY = -1 };
71 enum ProppatchOperation { PROPSET = 0, PROPREMOVE = 1 };
73 struct ProppatchValue
75 ProppatchOperation operation;
76 OUString name;
77 com::sun::star::uno::Any value;
79 ProppatchValue( const ProppatchOperation o,
80 const OUString & n,
81 const com::sun::star::uno::Any & v )
82 : operation( o ), name( n ), value( v ) {}
85 } // namespace webdav_ucp
87 #endif // INCLUDED_UCB_SOURCE_UCP_WEBDAV_NEON_DAVTYPES_HXX
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */