/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This 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 software 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. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package com.xpn.xwiki; import org.xwiki.component.annotation.Role; import org.xwiki.rendering.syntax.Syntax; /** * Configuration properties for the Core module. * <p> * You can override the default values for each of the configuration properties below by defining them in XWiki's global * configuration file using a prefix of "core" followed by the property name. For example: * <code>core.defaultDocumentSyntax = xwiki/2.0</code> * * @version $Id: aca8937a60772d736e4c0002a629a11b77ed6caf $ * @since 1.8RC2 */ @Role public interface CoreConfiguration { /** * @return the default syntax to use for new documents * @since 2.3M1 */ Syntax getDefaultDocumentSyntax(); }