You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PackageRelationshipTypes.java 2.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /* ====================================================================
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  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. package org.apache.poi.openxml4j.opc;
  16. /**
  17. * Relationship types.
  18. *
  19. * @author Julien Chable
  20. * @version 0.2
  21. */
  22. public interface PackageRelationshipTypes {
  23. /**
  24. * Core properties relationship type.
  25. */
  26. String CORE_PROPERTIES = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties";
  27. /**
  28. * Digital signature relationship type.
  29. */
  30. String DIGITAL_SIGNATURE = "http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/signature";
  31. /**
  32. * Digital signature certificate relationship type.
  33. */
  34. String DIGITAL_SIGNATURE_CERTIFICATE = "http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/certificate";
  35. /**
  36. * Digital signature origin relationship type.
  37. */
  38. String DIGITAL_SIGNATURE_ORIGIN = "http://schemas.openxmlformats.org/package/2006/relationships/digital-signature/origin";
  39. /**
  40. * Thumbnail relationship type.
  41. */
  42. String THUMBNAIL = "http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail";
  43. /**
  44. * Extended properties relationship type.
  45. */
  46. String EXTENDED_PROPERTIES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties";
  47. /**
  48. * Custom properties relationship type.
  49. */
  50. String CUSTOM_PROPERTIES = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties";
  51. /**
  52. * Core properties relationship type.
  53. */
  54. String CORE_DOCUMENT = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument";
  55. /**
  56. * Custom XML relationship type.
  57. */
  58. String CUSTOM_XML = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml";
  59. /**
  60. * Image type.
  61. */
  62. String IMAGE_PART = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image";
  63. /**
  64. * Hyperlink type.
  65. */
  66. String HYPERLINK_PART = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink";
  67. /**
  68. * Style type.
  69. */
  70. String STYLE_PART = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles";
  71. }