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

io.smallrye.config.common.AbstractSimpleDelegatingConverter Maven / Gradle / Ivy

There is a newer version: 3.10.1
Show newest version
package io.smallrye.config.common;

import org.eclipse.microprofile.config.spi.Converter;

/**
 * A converter which wraps another converter of the same type.
 */
public abstract class AbstractSimpleDelegatingConverter extends AbstractDelegatingConverter {
    private static final long serialVersionUID = 8320492892722511026L;

    protected AbstractSimpleDelegatingConverter(final Converter delegate) {
        super(delegate);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy