LanguageTool: don't crash if REST protocol isn't set
[LibreOffice.git] / reportbuilder / java / org / libreoffice / report / pentaho / OfficeNamespaces.java
blob6a7d144865fe06c76cead08c4f7b1d64dd153b60
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 package org.libreoffice.report.pentaho;
20 /**
21 * Creation-Date: Feb 22, 2007, 1:53:29 PM
24 public class OfficeNamespaces
27 public static final String OFFICE_NS = "urn:oasis:names:tc:opendocument:xmlns:office:1.0";
28 public static final String TABLE_NS = "urn:oasis:names:tc:opendocument:xmlns:table:1.0";
29 public static final String TEXT_NS = "urn:oasis:names:tc:opendocument:xmlns:text:1.0";
30 public static final String STYLE_NS = "urn:oasis:names:tc:opendocument:xmlns:style:1.0";
31 public static final String DRAWING_NS = "urn:oasis:names:tc:opendocument:xmlns:drawing:1.0";
32 public static final String FO_NS = "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0";
33 public static final String XLINK_NS = "http://www.w3.org/1999/xlink";
34 public static final String PURL_NS = "http://purl.org/dc/elements/1.1/";
35 public static final String META_NS = "urn:oasis:names:tc:opendocument:xmlns:meta:1.0";
36 public static final String DATASTYLE_NS = "urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0";
37 public static final String SVG_NS = "urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0";
38 public static final String CHART_NS = "urn:oasis:names:tc:opendocument:xmlns:chart:1.0";
39 public static final String CHARTOOO_NS = "http://openoffice.org/2010/chart";
40 public static final String DR3D_NS = "urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0";
41 public static final String MATHML_NS = "http://www.w3.org/1998/Math/MathML";
42 public static final String FORM_NS = "urn:oasis:names:tc:opendocument:xmlns:form:1.0";
43 public static final String SCRIPT_NS = "urn:oasis:names:tc:opendocument:xmlns:script:1.0";
44 public static final String OO2004_NS = "http://openoffice.org/2004/office";
45 public static final String OOW2004_NS = "http://openoffice.org/2004/writer";
46 public static final String OOC2004_NS = "http://openoffice.org/2004/calc";
47 public static final String XML_EVENT_NS = "http://www.w3.org/2001/xml-events";
48 public static final String XFORMS_NS = "http://www.w3.org/2002/xforms";
49 public static final String XSD_NS = "http://www.w3.org/2001/XMLSchema";
50 public static final String XSI_NS = "http://www.w3.org/2001/XMLSchema-instance";
51 public static final String OOREPORT_NS = "http://openoffice.org/2005/report";
52 public static final String GRDDL_NS = "http://www.w3.org/2003/g/data-view#";
53 public static final String CONFIG = "urn:oasis:names:tc:opendocument:xmlns:config:1.0";
54 public static final String LOEXT_NS = "urn:org:documentfoundation:names:experimental:office:xmlns:loext:1.0";
57 private OfficeNamespaces()