All Downloads are FREE. Search and download functionalities are using the official Maven repository.

es.osoco.logging.adapter.slf4j.Slf4jLoggingConfigurationProducer Maven / Gradle / Ivy

The newest version!
package es.osoco.logging.adapter.slf4j;

import es.osoco.logging.annotations.LoggingConfigurationProducer;
import org.checkerframework.checker.nullness.qual.NonNull;

import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
 * Produces {@link Slf4jLoggingConfiguration} instances.
 */
@EqualsAndHashCode
@ToString
public class Slf4jLoggingConfigurationProducer {

    /**
     * Creates a new {@link Slf4jLoggingConfiguration} instance.
     * @return such instance.
     */
    @LoggingConfigurationProducer
    @NonNull
    @SuppressWarnings("unused")
    public Slf4jLoggingConfiguration produceConfiguration() {
        return new Slf4jLoggingConfiguration();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy