1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 package com.sun.star.report.pentaho;
24 
25 /**
26  * Creation-Date: Feb 22, 2007, 1:53:29 PM
27  *
28  * @author Thomas Morgner
29  */
30 public class OfficeNamespaces
31 {
32 
33     public static final String OFFICE_NS = "urn:oasis:names:tc:opendocument:xmlns:office:1.0";
34     public static final String TABLE_NS = "urn:oasis:names:tc:opendocument:xmlns:table:1.0";
35     public static final String TEXT_NS = "urn:oasis:names:tc:opendocument:xmlns:text:1.0";
36     public static final String STYLE_NS = "urn:oasis:names:tc:opendocument:xmlns:style:1.0";
37     public static final String DRAWING_NS = "urn:oasis:names:tc:opendocument:xmlns:drawing:1.0";
38     public static final String FO_NS = "urn:oasis:names:tc:opendocument:xmlns:xsl-fo-compatible:1.0";
39     public static final String XLINK_NS = "http://www.w3.org/1999/xlink";
40     public static final String PURL_NS = "http://purl.org/dc/elements/1.1/";
41     public static final String META_NS = "urn:oasis:names:tc:opendocument:xmlns:meta:1.0";
42     public static final String DATASTYLE_NS = "urn:oasis:names:tc:opendocument:xmlns:datastyle:1.0";
43     public static final String SVG_NS = "urn:oasis:names:tc:opendocument:xmlns:svg-compatible:1.0";
44     public static final String CHART_NS = "urn:oasis:names:tc:opendocument:xmlns:chart:1.0";
45     public static final String CHARTOOO_NS = "http://openoffice.org/2010/chart";
46     public static final String DR3D_NS = "urn:oasis:names:tc:opendocument:xmlns:dr3d:1.0";
47     public static final String MATHML_NS = "http://www.w3.org/1998/Math/MathML";
48     public static final String FORM_NS = "urn:oasis:names:tc:opendocument:xmlns:form:1.0";
49     public static final String SCRIPT_NS = "urn:oasis:names:tc:opendocument:xmlns:script:1.0";
50     public static final String OO2004_NS = "http://openoffice.org/2004/office";
51     public static final String OOW2004_NS = "http://openoffice.org/2004/writer";
52     public static final String OOC2004_NS = "http://openoffice.org/2004/calc";
53     public static final String XML_EVENT_NS = "http://www.w3.org/2001/xml-events";
54     public static final String XFORMS_NS = "http://www.w3.org/2002/xforms";
55     public static final String XSD_NS = "http://www.w3.org/2001/XMLSchema";
56     public static final String XSI_NS = "http://www.w3.org/2001/XMLSchema-instance";
57     public static final String OOREPORT_NS = "http://openoffice.org/2005/report";
58     public static final String GRDDL_NS = "http://www.w3.org/2003/g/data-view#";
59     public static final String CONFIG = "urn:oasis:names:tc:opendocument:xmlns:config:1.0";
60     /**
61      * @deprecated
62      */
63     public static final String NUMBER_NS = DATASTYLE_NS;
64 
OfficeNamespaces()65     private OfficeNamespaces()
66     {
67     }
68 }
69