16df1ea1fSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 36df1ea1fSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 46df1ea1fSAndrew Rist * or more contributor license agreements. See the NOTICE file 56df1ea1fSAndrew Rist * distributed with this work for additional information 66df1ea1fSAndrew Rist * regarding copyright ownership. The ASF licenses this file 76df1ea1fSAndrew Rist * to you under the Apache License, Version 2.0 (the 86df1ea1fSAndrew Rist * "License"); you may not use this file except in compliance 96df1ea1fSAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 116df1ea1fSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 136df1ea1fSAndrew Rist * Unless required by applicable law or agreed to in writing, 146df1ea1fSAndrew Rist * software distributed under the License is distributed on an 156df1ea1fSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 166df1ea1fSAndrew Rist * KIND, either express or implied. See the License for the 176df1ea1fSAndrew Rist * specific language governing permissions and limitations 186df1ea1fSAndrew Rist * under the License. 19cdf0e10cSrcweir * 206df1ea1fSAndrew Rist *************************************************************/ 216df1ea1fSAndrew Rist 226df1ea1fSAndrew Rist 23cdf0e10cSrcweir #ifndef _DAVPROPERTIES_HXX_ 24cdf0e10cSrcweir #define _DAVPROPERTIES_HXX_ 25cdf0e10cSrcweir 26cdf0e10cSrcweir #include <rtl/ustring.hxx> 2759ddfc10SAndre Fischer #include "SerfTypes.hxx" 28cdf0e10cSrcweir 2959ddfc10SAndre Fischer namespace http_dav_ucp 30cdf0e10cSrcweir { 31cdf0e10cSrcweir 32cdf0e10cSrcweir struct DAVProperties 33cdf0e10cSrcweir { 34cdf0e10cSrcweir static const ::rtl::OUString CREATIONDATE; 35cdf0e10cSrcweir static const ::rtl::OUString DISPLAYNAME; 36cdf0e10cSrcweir static const ::rtl::OUString GETCONTENTLANGUAGE; 37cdf0e10cSrcweir static const ::rtl::OUString GETCONTENTLENGTH; 38cdf0e10cSrcweir static const ::rtl::OUString GETCONTENTTYPE; 39cdf0e10cSrcweir static const ::rtl::OUString GETETAG; 40cdf0e10cSrcweir static const ::rtl::OUString GETLASTMODIFIED; 41cdf0e10cSrcweir static const ::rtl::OUString LOCKDISCOVERY; 42cdf0e10cSrcweir static const ::rtl::OUString RESOURCETYPE; 43cdf0e10cSrcweir static const ::rtl::OUString SUPPORTEDLOCK; 44cdf0e10cSrcweir static const ::rtl::OUString EXECUTABLE; 45cdf0e10cSrcweir 4659ddfc10SAndre Fischer static void createSerfPropName( const rtl::OUString & rFullName, 4759ddfc10SAndre Fischer SerfPropName & rName ); 48cdf0e10cSrcweir static void createUCBPropName ( const char * nspace, 49cdf0e10cSrcweir const char * name, 50cdf0e10cSrcweir rtl::OUString & rFullName ); 51cdf0e10cSrcweir 5259ddfc10SAndre Fischer static bool isUCBDeadProperty( const SerfPropName & rName ); 53*06594b87SAriel Constenla-Haile static bool isUCBSpecialProperty( const rtl::OUString & rFullName, 54*06594b87SAriel Constenla-Haile rtl::OUString & rParsedName ); 55cdf0e10cSrcweir }; 56cdf0e10cSrcweir 5759ddfc10SAndre Fischer } // namespace http_dav_ucp 58cdf0e10cSrcweir 59cdf0e10cSrcweir #endif // _DAVPROPERTIES_HXX_ 60