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

io.crnk.spring.boot.CrnkUiProperties Maven / Gradle / Ivy

package io.crnk.spring.boot;

import org.springframework.boot.context.properties.ConfigurationProperties;

/**
 * Configuration properties for crnk-ui
 */
@ConfigurationProperties("crnk.ui")
public class CrnkUiProperties {

	private boolean enabled = true;

	public boolean getEnabled() {
		return enabled;
	}

	public void setEnabled(boolean enabled) {
		this.enabled = enabled;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy