
com.github.mkopylec.charon.configuration.Configurer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of charon-spring-webflux Show documentation
Show all versions of charon-spring-webflux Show documentation
Reverse proxy implementation in form of Spring Boot starter
The newest version!
package com.github.mkopylec.charon.configuration;
public abstract class Configurer {
protected O configuredObject;
protected Configurer(O configuredObject) {
this.configuredObject = configuredObject;
}
protected O configure() {
configuredObject.validate();
return configuredObject;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy