summaryrefslogtreecommitdiff
path: root/offapi
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-12-14 10:13:29 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-12-14 14:23:33 +0100
commit1390c91c7584a89298906849cdabae131f8a6191 (patch)
treeca28801ff6f9945e9b8b134d1dcbd5edcbb12f74 /offapi
parent266beae6cdc352f942a7ea5935f8a8b21d2d1e01 (diff)
[API CHANGE] offapi: remove unused css.security.SerialNumberAdapter
This is mostly just the offapi/ part, more C++ code can be removed in xmlsecurity/ after this. It seems to be unlikely that this non-published service was used by 3rd-party code, since it was specific to other xmlsecurity/ code, not generic functionality that could be useful in other contexts. Change-Id: I0d798577a42445e65a4c5178fcb4464ea03bc56e Reviewed-on: https://gerrit.libreoffice.org/46442 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'offapi')
-rw-r--r--offapi/UnoApi_offapi.mk2
-rw-r--r--offapi/com/sun/star/security/SerialNumberAdapter.idl47
-rw-r--r--offapi/com/sun/star/security/XSerialNumberAdapter.idl50
3 files changed, 0 insertions, 99 deletions
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index 472771a5c15d..fd05331584e3 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -359,7 +359,6 @@ $(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,com/sun/star/sdbc,\
$(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,com/sun/star/security,\
CertificateContainer \
DocumentDigitalSignatures \
- SerialNumberAdapter \
))
$(eval $(call gb_UnoApi_add_idlfiles_nohdl,offapi,com/sun/star/setup,\
UpdateCheck \
@@ -3336,7 +3335,6 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/security,\
XCertificateExtension \
XDocumentDigitalSignatures \
XSanExtension \
- XSerialNumberAdapter \
))
$(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/sheet/opencl,\
diff --git a/offapi/com/sun/star/security/SerialNumberAdapter.idl b/offapi/com/sun/star/security/SerialNumberAdapter.idl
deleted file mode 100644
index 6473c6c4ee42..000000000000
--- a/offapi/com/sun/star/security/SerialNumberAdapter.idl
+++ /dev/null
@@ -1,47 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef __com_sun_star_security_SerialNumberAdapter_idl_
-#define __com_sun_star_security_SerialNumberAdapter_idl_
-
-
-module com { module sun { module star { module security {
- interface XSerialNumberAdapter; };
-}; }; };
-
-
-module com { module sun { module star { module security {
-
-
-/** provides conversion services for Serial Numbers.
-
- <p>An implementation of this service enables the conversion of certificate
- serial number to and from a string</p>
-
- @since OOo 3.1
- */
-
-service SerialNumberAdapter : XSerialNumberAdapter;
-
-
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/security/XSerialNumberAdapter.idl b/offapi/com/sun/star/security/XSerialNumberAdapter.idl
deleted file mode 100644
index 07356bcbe126..000000000000
--- a/offapi/com/sun/star/security/XSerialNumberAdapter.idl
+++ /dev/null
@@ -1,50 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef __com_sun_star_security_XSerialNumberAdapter_idl_
-#define __com_sun_star_security_XSerialNumberAdapter_idl_
-
-#include <com/sun/star/uno/XInterface.idl>
-
-module com { module sun { module star { module security {
-
-/**
- * Interface of Certificate Serial Number Converter
- *
- * <p>This interface converts a certificate serial number to and from a string</p>
- */
-interface XSerialNumberAdapter : com::sun::star::uno::XInterface
-{
- /**
- * Convert the SerialNumber to a string
- */
- string toString( [in]sequence< byte > SerialNumber );
-
- /**
- * Convert the SerialNumber to a sequence
- */
- sequence< byte > toSequence( [in]string SerialNumber );
-
-} ;
-
-} ; } ; } ; } ;
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */