1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #include <xmlsec/xmlelementwrapper_xmlsecimpl.hxx>
23 #include <com/sun/star/uno/XComponentContext.hpp>
24 #include <cppuhelper/supportsservice.hxx>
25 #include <cppuhelper/typeprovider.hxx>
27 namespace cssu
= com::sun::star::uno
;
29 #define IMPLEMENTATION_NAME "com.sun.star.xml.security.bridge.xmlsec.XMLElementWrapper_XmlSecImpl"
31 XMLElementWrapper_XmlSecImpl::XMLElementWrapper_XmlSecImpl(const xmlNodePtr pNode
)
36 /* XXMLElementWrapper */
40 cssu::Sequence
< sal_Int8
> XMLElementWrapper_XmlSecImpl::getUnoTunnelImplementationId()
42 static ::cppu::OImplementationId implId
;
44 return implId
.getImplementationId();
47 sal_Int64 SAL_CALL
XMLElementWrapper_XmlSecImpl::getSomething( const cssu::Sequence
< sal_Int8
>& aIdentifier
)
49 if (aIdentifier
.getLength() == 16 &&
51 getUnoTunnelImplementationId().getConstArray(),
52 aIdentifier
.getConstArray(),
55 return reinterpret_cast < sal_Int64
> ( this );
64 OUString
XMLElementWrapper_XmlSecImpl_getImplementationName ()
66 return OUString ( IMPLEMENTATION_NAME
);
69 cssu::Sequence
< OUString
> SAL_CALL
XMLElementWrapper_XmlSecImpl_getSupportedServiceNames( )
71 cssu::Sequence
<OUString
> aRet
{ "com.sun.star.xml.wrapper.XMLElementWrapper" };
75 cssu::Reference
< cssu::XInterface
> SAL_CALL
76 XMLElementWrapper_XmlSecImpl_createInstance(
77 const cssu::Reference
< cssu::XComponentContext
> &)
79 return static_cast<cppu::OWeakObject
*>(new XMLElementWrapper_XmlSecImpl(nullptr));
83 OUString SAL_CALL
XMLElementWrapper_XmlSecImpl::getImplementationName( )
85 return XMLElementWrapper_XmlSecImpl_getImplementationName();
87 sal_Bool SAL_CALL
XMLElementWrapper_XmlSecImpl::supportsService( const OUString
& rServiceName
)
89 return cppu::supportsService( this, rServiceName
);
91 cssu::Sequence
< OUString
> SAL_CALL
XMLElementWrapper_XmlSecImpl::getSupportedServiceNames( )
93 return XMLElementWrapper_XmlSecImpl_getSupportedServiceNames();
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */