File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
agent-api/src/main/java/com/intergral/deep/agent/api Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ interface IPluginRegistration extends IRegistration<IPlugin> {
76
76
* Indicates if this plugin is currently set to be the auth provider
77
77
*
78
78
* @return {@code true} if the registered plugin is an {@link com.intergral.deep.agent.api.auth.IAuthProvider} and deep is configured to
79
- * use this provider, else {@link false}
79
+ * use this provider, else {@code false}
80
80
*/
81
81
boolean isAuthProvider ();
82
82
}
Original file line number Diff line number Diff line change @@ -12,13 +12,18 @@ public final class ConfigurationException extends RuntimeException {
12
12
13
13
/**
14
14
* Create a new configuration exception with specified {@code message} and without a cause.
15
+ *
16
+ * @param message The exception message
15
17
*/
16
18
public ConfigurationException (String message ) {
17
19
super (message );
18
20
}
19
21
20
22
/**
21
23
* Create a new configuration exception with specified {@code message} and {@code cause}.
24
+ *
25
+ * @param message The exception message
26
+ * @param cause The root cause of this exception
22
27
*/
23
28
public ConfigurationException (String message , Throwable cause ) {
24
29
super (message , cause );
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ public interface Ordered {
16
16
* Returns the order of applying the SPI implementing this interface. Higher values are applied
17
17
* later, for example: an SPI with order=1 will run after an SPI with order=0. SPI implementations
18
18
* with equal values will be run in a non-deterministic order.
19
+ *
20
+ * @return the order value
19
21
*/
20
22
default int order () {
21
23
return 0 ;
You can’t perform that action at this time.
0 commit comments