API CHANGE: remove com.sun.star.util.logging module

This module was deprecated and replaced with com.sun.star.logging in
OpenOffice.org 2.3 (i#76119); there is no implementation of the
interfaces. Removed types:

com.sun.star.util.logging.LogLevel
com.sun.star.util.logging.Logger
com.sun.star.util.logging.LoggerRemote
com.sun.star.util.logging.XLogger
com.sun.star.util.logging.XLoggerRemote

WARNING: could not open key "/UCR/com/sun/star/util/logging/XLogger" in
registry "/master/offapi/type_reference/types.rdb"
EXISTENCE: module "/UCR/com/sun/star/util/logging" with published
children exists only in registry 1

Change-Id: Ief1beadf0e32dee03f555599909ac5f31a5034dd
diff --git a/offapi/type_reference/types.rdb b/offapi/type_reference/types.rdb
index 04870ab..0f959fa 100644
--- a/offapi/type_reference/types.rdb
+++ b/offapi/type_reference/types.rdb
Binary files differ
diff --git a/udkapi/UnoApi_udkapi.mk b/udkapi/UnoApi_udkapi.mk
index a1dfacb..e043fc9 100644
--- a/udkapi/UnoApi_udkapi.mk
+++ b/udkapi/UnoApi_udkapi.mk
@@ -101,11 +101,6 @@ $(eval $(call gb_UnoApi_add_idlfiles_noheader,udkapi,udkapi/com/sun/star/util,\
	MacroExpander \
	theMacroExpander \
))
$(eval $(call gb_UnoApi_add_idlfiles_noheader,udkapi,udkapi/com/sun/star/util/logging,\
	Logger \
	LoggerRemote \
))


$(eval $(call gb_UnoApi_add_idlfiles_nohdl,udkapi,udkapi/com/sun/star/beans,\
	Introspection \
@@ -534,11 +529,5 @@ $(eval $(call gb_UnoApi_add_idlfiles,udkapi,udkapi/com/sun/star/util,\
	XMacroExpander \
	XVeto \
))
$(eval $(call gb_UnoApi_add_idlfiles,udkapi,udkapi/com/sun/star/util/logging,\
	LogLevel \
	XLogger \
	XLoggerRemote \
))


# vim: set noet sw=4 ts=4:
diff --git a/udkapi/com/sun/star/util/logging/LogLevel.idl b/udkapi/com/sun/star/util/logging/LogLevel.idl
deleted file mode 100644
index 82afec7..0000000
--- a/udkapi/com/sun/star/util/logging/LogLevel.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_util_logging_Level_idl__
#define __com_sun_star_util_logging_Level_idl__


module com { module sun { module star { module util { module logging {


/** deprecated API - use <type scope="com::sun::star::logging">LogLevel</type> instead

    @deprecated
    @since OOo 1.1.2
*/
published constants LogLevel
{
    const long  OFF       = 0x7fffffff;
    const long  SEVERE    =       1000;
    const long  WARNING   =        900;
    const long  INFO      =        800;
    const long  CONFIG    =        700;
    const long  FINE      =        500;
    const long  FINER     =        400;
    const long  FINEST    =        300;
    const long  ALL       = -0x80000000;
};


}; }; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/udkapi/com/sun/star/util/logging/Logger.idl b/udkapi/com/sun/star/util/logging/Logger.idl
deleted file mode 100644
index 5b535b7..0000000
--- a/udkapi/com/sun/star/util/logging/Logger.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_webtop_Logger_idl__
#define __com_sun_star_webtop_Logger_idl__

#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/util/logging/XLogger.idl>
#include <com/sun/star/util/logging/XLoggerRemote.idl>


module com { module sun { module star { module util { module logging {


/** deprecated API - use <type scope="com::sun::star::logging">LoggerPool</type> instead

    @deprecated
    @since OOo 1.1.2
*/
published service Logger
{
    /// @deprecated
    interface com::sun::star::util::logging::XLogger;
};


}; }; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/udkapi/com/sun/star/util/logging/LoggerRemote.idl b/udkapi/com/sun/star/util/logging/LoggerRemote.idl
deleted file mode 100644
index c42d320..0000000
--- a/udkapi/com/sun/star/util/logging/LoggerRemote.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_webtop_Logger_idl__
#define __com_sun_star_webtop_Logger_idl__

#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/util/logging/XLogger.idl>
#include <com/sun/star/util/logging/XLoggerRemote.idl>


module com { module sun { module star { module util { module logging {


    /** deprecated API - use <type scope="com::sun::star::logging">LoggerPool</type> instead

    @deprecated
    @since OOo 1.1.2
*/
published service LoggerRemote
{
    /// @deprecated
    interface com::sun::star::util::logging::XLoggerRemote;
};


}; }; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/udkapi/com/sun/star/util/logging/XLogger.idl b/udkapi/com/sun/star/util/logging/XLogger.idl
deleted file mode 100644
index 2eace8c..0000000
--- a/udkapi/com/sun/star/util/logging/XLogger.idl
+++ /dev/null
@@ -1,60 +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_util_logging_XLogger_idl__
#define __com_sun_star_util_logging_XLogger_idl__

#include <com/sun/star/uno/XInterface.idl>


module com { module sun { module star { module util { module logging {


/** deprecated API - use <type scope="com::sun::star::logging">XLogger</type> instead

    @deprecated
    @since OOo 1.1.2
*/
published interface XLogger: com::sun::star::uno::XInterface
{
    /// @deprecated
    XLogger getLogger( [in] string name );

    /// @deprecated
    long getLevel();

    /// @deprecated
    string getName();

    /// @deprecated
    boolean isLoggable( [in] long level );

    /// @deprecated
    [oneway] void logp( [in] long   level,
                        [in] string sourceClass,
                        [in] string sourceMethod,
                        [in] string msg );
};


}; }; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/udkapi/com/sun/star/util/logging/XLoggerRemote.idl b/udkapi/com/sun/star/util/logging/XLoggerRemote.idl
deleted file mode 100644
index c891280..0000000
--- a/udkapi/com/sun/star/util/logging/XLoggerRemote.idl
+++ /dev/null
@@ -1,63 +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_util_logging_XLoggerRemote_idl__
#define __com_sun_star_util_logging_XLoggerRemote_idl__

#include <com/sun/star/uno/XInterface.idl>
#include <com/sun/star/beans/XPropertiesChangeListener.idl>


module com { module sun { module star { module util { module logging {


/** deprecated API - use <type scope="com::sun::star::logging">XLogger</type> instead

    @deprecated
    @since OOo 1.1.2
*/
published interface XLoggerRemote: com::sun::star::uno::XInterface
{
    /// @deprecated
    long getLevel();

    /// @deprecated
    string getName();

    /// @deprecated
    boolean isLoggable( [in] long level );

    /// @deprecated
    [oneway] void logp( [in] long   level,
                        [in] string sourceClass,
                        [in] string sourceMethod,
                        [in] string msg,
                        [in] string thread );

    /// @deprecated
    [oneway] void addPropertiesChangeListener(
                [in] com::sun::star::beans::XPropertiesChangeListener listener);
};


}; }; }; }; };

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */