File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
inject/src/main/java/io/avaje/inject/spi Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 88 * Plugin interface which contains the application properties used for wiring. Used with
99 * {@link io.avaje.inject.RequiresProperty} and {@link io.avaje.inject.Profile}.
1010 *
11- * <p>The plugin is loaded via ServiceLoader and defaults to an implementation that uses {@link
12- * System#getProperty(String)} and {@link System#getenv(String)}.
11+ * <p>The plugin is loaded via ServiceLoader and defaults to an implementation that uses
12+ * {@link System#getProperty(String)} and {@link System#getenv(String)}.
1313 */
1414@ NullMarked
1515public interface ConfigPropertyPlugin extends InjectExtension {
1616
17- /**
18- * Return a configuration value that might not exist.
19- */
17+ /** Return a configuration value that might not exist. */
2018 Optional <String > get (String property );
2119
22- /**
23- * Return true if the property is defined.
24- */
20+ /** Return true if the property is defined. */
2521 boolean contains (String property );
2622
2723 /** Return true if the property is not defined. */
You can’t perform that action at this time.
0 commit comments