1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_desktop.hxx"
30 
31 #include "rtl/string.h"
32 #include "cppuhelper/exc_hlp.hxx"
33 #include "com/sun/star/uno/XComponentContext.hpp"
34 #include "com/sun/star/xml/dom/XDocument.hpp"
35 #include "com/sun/star/xml/xpath/XXPathAPI.hpp"
36 #include "dp_misc.h"
37 #include "dp_scriptbackenddb.hxx"
38 
39 
40 namespace css = ::com::sun::star;
41 using namespace ::com::sun::star::uno;
42 using ::rtl::OUString;
43 
44 #define EXTENSION_REG_NS "http://openoffice.org/extensionmanager/script-registry/2010"
45 #define NS_PREFIX "script"
46 #define ROOT_ELEMENT_NAME "script-backend-db"
47 #define KEY_ELEMENT_NAME "script"
48 
49 namespace dp_registry {
50 namespace backend {
51 namespace script {
52 
53 ScriptBackendDb::ScriptBackendDb(
54     Reference<XComponentContext> const &  xContext,
55     ::rtl::OUString const & url):RegisteredDb(xContext, url)
56 {
57 
58 }
59 
60 OUString ScriptBackendDb::getDbNSName()
61 {
62     return OUSTR(EXTENSION_REG_NS);
63 }
64 
65 OUString ScriptBackendDb::getNSPrefix()
66 {
67     return OUSTR(NS_PREFIX);
68 }
69 
70 OUString ScriptBackendDb::getRootElementName()
71 {
72     return OUSTR(ROOT_ELEMENT_NAME);
73 }
74 
75 OUString ScriptBackendDb::getKeyElementName()
76 {
77     return OUSTR(KEY_ELEMENT_NAME);
78 }
79 
80 
81 
82 } // namespace executable
83 } // namespace backend
84 } // namespace dp_registry
85 
86