
io.crnk.spring.boot.CrnkMetaProperties Maven / Gradle / Ivy
package io.crnk.spring.boot;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* Configuration properties for crnk-meta
*/
@ConfigurationProperties("crnk.meta")
public class CrnkMetaProperties {
private boolean enabled = true;
private boolean listResources = true;
public boolean getEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
public boolean getListResources() {
return listResources;
}
public void setListResources(boolean listResources) {
this.listResources = listResources;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy