io.quarkus.csrf.reactive.runtime.CsrfReactiveConfigRelocateInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-rest-csrf Show documentation
Show all versions of quarkus-rest-csrf Show documentation
Use REST Server filters to prevent the risk of Cross-Site Request Forgery
package io.quarkus.csrf.reactive.runtime;
import java.util.function.Function;
import io.quarkus.runtime.util.StringUtil;
import io.smallrye.config.RelocateConfigSourceInterceptor;
/**
* @deprecated maps the old config to the new config, should be removed at some point
*/
@Deprecated(forRemoval = true, since = "3.9")
public class CsrfReactiveConfigRelocateInterceptor extends RelocateConfigSourceInterceptor {
private static final String OLD_PREFIX = "quarkus.csrf-reactive.";
private static final String NEW_PREFIX = "quarkus.rest-csrf.";
private static final Function RENAME_FUNCTION = new Function() {
@Override
public String apply(String s) {
return StringUtil.changePrefix(s, OLD_PREFIX, NEW_PREFIX);
}
};
public CsrfReactiveConfigRelocateInterceptor() {
super(RENAME_FUNCTION);
}
}