]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.jcr/src/org/argeo/jcr/JcrxType.java
Better deal with multiple user directories.
[lgpl/argeo-commons.git] / org.argeo.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 }