This is an automated email from the ASF dual-hosted git repository.
kwin pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-crypto.git
The following commit(s) were added to refs/heads/master by this push:
new 8b5a93b SLING-13279 Update web console plugin category from 'Crypto'
to 'Sling'
8b5a93b is described below
commit 8b5a93bcd07b166559699d34e0fa722f621611dc
Author: Konrad Windszus <[email protected]>
AuthorDate: Fri Aug 21 16:45:13 2026 +0200
SLING-13279 Update web console plugin category from 'Crypto' to 'Sling'
---
.../commons/crypto/webconsole/internal/EncryptWebConsolePlugin.java | 4 ++--
.../webconsole/internal/JcaProviderAlgorithmsWebConsolePlugin.java | 4 ++--
.../sling/commons/crypto/it/tests/EncryptWebConsolePluginIT.java | 6 +++---
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git
a/src/main/java/org/apache/sling/commons/crypto/webconsole/internal/EncryptWebConsolePlugin.java
b/src/main/java/org/apache/sling/commons/crypto/webconsole/internal/EncryptWebConsolePlugin.java
index 94db866..e2587b8 100644
---
a/src/main/java/org/apache/sling/commons/crypto/webconsole/internal/EncryptWebConsolePlugin.java
+++
b/src/main/java/org/apache/sling/commons/crypto/webconsole/internal/EncryptWebConsolePlugin.java
@@ -49,8 +49,8 @@ import org.osgi.util.tracker.ServiceTracker;
service = Servlet.class,
property = {
"felix.webconsole.label=sling-commons-crypto-encrypt",
- "felix.webconsole.title=Sling Commons Crypto Encrypt",
- "felix.webconsole.category=Crypto"
+ "felix.webconsole.title=Commons Crypto Encrypt",
+ "felix.webconsole.category=Sling"
}
)
@SuppressWarnings({"java:S1989", "java:S2226", "java:S6212"})
diff --git
a/src/main/java/org/apache/sling/commons/crypto/webconsole/internal/JcaProviderAlgorithmsWebConsolePlugin.java
b/src/main/java/org/apache/sling/commons/crypto/webconsole/internal/JcaProviderAlgorithmsWebConsolePlugin.java
index de3cbda..96555ba 100644
---
a/src/main/java/org/apache/sling/commons/crypto/webconsole/internal/JcaProviderAlgorithmsWebConsolePlugin.java
+++
b/src/main/java/org/apache/sling/commons/crypto/webconsole/internal/JcaProviderAlgorithmsWebConsolePlugin.java
@@ -46,8 +46,8 @@ import org.osgi.service.component.annotations.Component;
service = Servlet.class,
property = {
"felix.webconsole.label=sling-commons-crypto-jca-provider-algorithms",
- "felix.webconsole.title=Sling Commons Crypto JCA Provider Algorithms",
- "felix.webconsole.category=Crypto"
+ "felix.webconsole.title=JCA Provider Algorithms",
+ "felix.webconsole.category=Sling"
}
)
@SuppressWarnings({"java:S1989", "java:S2226", "java:S6212"})
diff --git
a/src/test/java/org/apache/sling/commons/crypto/it/tests/EncryptWebConsolePluginIT.java
b/src/test/java/org/apache/sling/commons/crypto/it/tests/EncryptWebConsolePluginIT.java
index 41be926..3eb93c8 100644
---
a/src/test/java/org/apache/sling/commons/crypto/it/tests/EncryptWebConsolePluginIT.java
+++
b/src/test/java/org/apache/sling/commons/crypto/it/tests/EncryptWebConsolePluginIT.java
@@ -104,7 +104,7 @@ public class EncryptWebConsolePluginIT extends
CryptoTestSupport {
final Document document = Jsoup.connect(url)
.header("Authorization", String.format("Basic %s", CREDENTIALS))
.get();
- assertThat(document.title(), is("Apache Felix Web Console - Sling
Commons Crypto Encrypt"));
+ assertThat(document.title(), is("Apache Felix Web Console - Commons
Crypto Encrypt"));
assertThat(document.getElementById("content").child(0).text(), is("No
crypto service available"));
}
@@ -118,7 +118,7 @@ public class EncryptWebConsolePluginIT extends
CryptoTestSupport {
final Document document = Jsoup.connect(url)
.header("Authorization", String.format("Basic %s", CREDENTIALS))
.get();
- assertThat(document.title(), is("Apache Felix Web Console - Sling
Commons Crypto Encrypt"));
+ assertThat(document.title(), is("Apache Felix Web Console - Commons
Crypto Encrypt"));
assertThat(document.getElementById("service-id").child(0).text(),
is(label));
}
@@ -133,7 +133,7 @@ public class EncryptWebConsolePluginIT extends
CryptoTestSupport {
.data("service-id", id)
.data("message", message)
.post();
- assertThat(document.title(), is("Apache Felix Web Console - Sling
Commons Crypto Encrypt"));
+ assertThat(document.title(), is("Apache Felix Web Console - Commons
Crypto Encrypt"));
assertThat(document.getElementById("ciphertext").text(), is(text));
}