fish.payara.nucleus.microprofile.config.spi.ConfigSourceConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project
package fish.payara.nucleus.microprofile.config.spi;
import org.jvnet.hk2.config.Attribute;
import org.jvnet.hk2.config.ConfigBeanProxy;
import org.jvnet.hk2.config.Configured;
@Configured
public interface ConfigSourceConfiguration extends ConfigBeanProxy {
@Attribute(defaultValue = "false", dataType = Boolean.class)
String getEnabled();
void setEnabled(String value);
}