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

com.c4_soft.springaddons.security.oauth2.test.webflux.WebTestClientProperties Maven / Gradle / Ivy

The newest version!
package com.c4_soft.springaddons.security.oauth2.test.webflux;

import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.core.Ordered;
import org.springframework.core.annotation.Order;

@Order(Ordered.HIGHEST_PRECEDENCE)
@AutoConfiguration
@ConfigurationProperties(prefix = "com.c4-soft.springaddons.test.web")
public class WebTestClientProperties {
	private String defaultMediaType = "application/json";
	private String defaultCharset = "utf-8";

	public String getDefaultMediaType() {
		return defaultMediaType;
	}

	public void setDefaultMediaType(String defaultMediaType) {
		this.defaultMediaType = defaultMediaType;
	}

	public String getDefaultCharset() {
		return defaultCharset;
	}

	public void setDefaultCharset(String defaultCharset) {
		this.defaultCharset = defaultCharset;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy