/core/externals/update-engine/externals/gdata-objectivec-client/Source/Clients/WebmasterTools/GDataEntrySitemap.h

http://macfuse.googlecode.com/ · C++ Header · 92 lines · 55 code · 19 blank · 18 comment · 1 complexity · c0a8df24ca0574540ade6be17cce2880 MD5 · raw file

  1. /* Copyright (c) 2008 Google Inc.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. //
  16. // GDataEntrySitemap.h
  17. //
  18. #if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_WEBMASTERTOOLS_SERVICE
  19. #import "GDataEntryBase.h"
  20. @interface GDataSitemapStatus : GDataValueElementConstruct <GDataExtension>
  21. + (NSString *)extensionElementURI;
  22. + (NSString *)extensionElementPrefix;
  23. + (NSString *)extensionElementLocalName;
  24. @end
  25. @interface GDataSitemapLastDownloaded : GDataValueElementConstruct <GDataExtension>
  26. + (NSString *)extensionElementURI;
  27. + (NSString *)extensionElementPrefix;
  28. + (NSString *)extensionElementLocalName;
  29. @end
  30. @interface GDataSitemapURLCount : GDataValueElementConstruct <GDataExtension>
  31. + (NSString *)extensionElementURI;
  32. + (NSString *)extensionElementPrefix;
  33. + (NSString *)extensionElementLocalName;
  34. @end
  35. @interface GDataSitemapType : GDataValueElementConstruct <GDataExtension>
  36. + (NSString *)extensionElementURI;
  37. + (NSString *)extensionElementPrefix;
  38. + (NSString *)extensionElementLocalName;
  39. @end
  40. @interface GDataSitemapMobileMarkupLanguage : GDataValueElementConstruct <GDataExtension>
  41. + (NSString *)extensionElementURI;
  42. + (NSString *)extensionElementPrefix;
  43. + (NSString *)extensionElementLocalName;
  44. @end
  45. @interface GDataSitemapNewsPublicationLabel : GDataValueElementConstruct <GDataExtension>
  46. + (NSString *)extensionElementURI;
  47. + (NSString *)extensionElementPrefix;
  48. + (NSString *)extensionElementLocalName;
  49. @end
  50. @interface GDataEntrySitemapBase : GDataEntryBase {
  51. }
  52. + (id)sitemapEntry;
  53. // extensions
  54. - (NSString *)sitemapStatus;
  55. - (void)setSitemapStatus:(NSString *)str;
  56. - (GDataDateTime *)lastDownloadDate;
  57. - (void)setLastDownloadDate:(GDataDateTime *)dateTime;
  58. - (NSNumber *)sitemapURLCount;
  59. - (void)setSitemapURLCount:(NSNumber *)num;
  60. @end
  61. @interface GDataEntrySitemapRegular : GDataEntrySitemapBase
  62. - (NSString *)sitemapType;
  63. - (void)setSitemapType:(NSString *)str;
  64. @end
  65. @interface GDataEntrySitemapMobile : GDataEntrySitemapBase
  66. - (NSString *)markupLanguage;
  67. - (void)setMarkupLanguage:(NSString *)str;
  68. @end
  69. @interface GDataEntrySitemapNews : GDataEntrySitemapBase
  70. - (NSString *)publicationLabel;
  71. - (void)setPublicationLabel:(NSString *)str;
  72. @end
  73. #endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_WEBMASTERTOOLS_SERVICE