001/*
002 * Copyright (c) 2006-2014 Nuxeo SA (http://nuxeo.com/) and others.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Florent Guillaume
011 */
012package org.nuxeo.ecm.core.storage.sql.coremodel;
013
014import org.nuxeo.ecm.core.model.Document;
015import org.nuxeo.ecm.core.storage.sql.Node;
016
017/**
018 * Base interface for SQL documents.
019 */
020public interface SQLDocument extends Document {
021
022    String SIMPLE_TEXT_SYS_PROP = "fulltextSimple";
023
024    String BINARY_TEXT_SYS_PROP = "fulltextBinary";
025
026    String FULLTEXT_JOBID_SYS_PROP = "fulltextJobId";
027
028    /**
029     * Returns the node with info about the hierarchy location.
030     */
031    Node getNode();
032
033}