]> git.argeo.org Git - lgpl/argeo-commons.git/blob - jcr/org.argeo.cms.jcr/src/org/argeo/jcr/JcrxType.java
[maven-release-plugin] prepare release argeo-commons-2.3.5
[lgpl/argeo-commons.git] / jcr / org.argeo.cms.jcr / src / org / argeo / jcr / JcrxType.java
1 package org.argeo.jcr;
2
3 /** Node types declared by the JCR extensions. */
4 public interface JcrxType {
5 /**
6 * Node type for an XML value, which will be serialized in XML as an element
7 * containing text.
8 */
9 public final static String JCRX_XMLVALUE = "{http://www.argeo.org/ns/jcrx}xmlvalue";
10
11 /** Node type for the node containing the text. */
12 public final static String JCRX_XMLTEXT = "{http://www.argeo.org/ns/jcrx}xmltext";
13
14 /** Mixin node type for a set of checksums. */
15 public final static String JCRX_CSUM = "{http://www.argeo.org/ns/jcrx}csum";
16
17 }