/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.store.jcr; /** * @author Michael Young */ public interface JCRConstants { public static final String JCR_CONTENT = "jcr:content"; public static final String JCR_DATA = "jcr:data"; public static final String JCR_FROZEN_NODE = "jcr:frozenNode"; public static final String JCR_LAST_MODIFIED = "jcr:lastModified"; public static final String JCR_MIME_TYPE = "jcr:mimeType"; public static final String JCR_ROOT_VERSION = "jcr:rootVersion"; public static final String MIX_VERSIONABLE = "mix:versionable"; public static final String NT_FILE = "nt:file"; public static final String NT_FOLDER = "nt:folder"; public static final String NT_RESOURCE = "nt:resource"; }