This is an automated email from the ASF dual-hosted git repository.

cziegeler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/felix-dev.git


The following commit(s) were added to refs/heads/master by this push:
     new 5e247f4  FELIX-6367 : Provide SPI for configuration management
5e247f4 is described below

commit 5e247f42253da4d9c6ac7257b97aae8d4c56cad5
Author: Carsten Ziegeler <[email protected]>
AuthorDate: Thu Sep 2 02:48:35 2021 +0200

    FELIX-6367 : Provide SPI for configuration management
---
 .../java/org/apache/felix/webconsole/spi/ConfigurationHandler.java   | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git 
a/webconsole/src/main/java/org/apache/felix/webconsole/spi/ConfigurationHandler.java
 
b/webconsole/src/main/java/org/apache/felix/webconsole/spi/ConfigurationHandler.java
index da92ad8..0e32329 100644
--- 
a/webconsole/src/main/java/org/apache/felix/webconsole/spi/ConfigurationHandler.java
+++ 
b/webconsole/src/main/java/org/apache/felix/webconsole/spi/ConfigurationHandler.java
@@ -21,13 +21,16 @@ package org.apache.felix.webconsole.spi;
 import java.io.IOException;
 import java.util.Dictionary;
 
+import org.osgi.annotation.versioning.ConsumerType;
+
 /**
  * A configuration handler allows to hook into the processing of 
configurations for
  * the webconsole plugin.
  * A handler can decide to hide configurations and properties but also 
implement
  * additional validation.
- * All configuration handlers are called in order of their service ranking, 
highest first.
+ * All configuration handlers are called in no particular order.
  */
+@ConsumerType
 public interface ConfigurationHandler {
 
     /**

Reply via email to