This is an automated email from the ASF dual-hosted git repository.
coheigea pushed a commit to branch coheigea/saml-refactor-new
in repository https://gitbox.apache.org/repos/asf/ws-wss4j.git
The following commit(s) were added to refs/heads/coheigea/saml-refactor-new by
this push:
new bd49090d7 Making method in WSHandler protected for CXF usage
bd49090d7 is described below
commit bd49090d74311ab12ff8ea0c9301864e344dfea9
Author: Colm O hEigeartaigh <[email protected]>
AuthorDate: Mon Jun 30 09:17:11 2025 +0100
Making method in WSHandler protected for CXF usage
---
.../src/main/java/org/apache/wss4j/dom/handler/WSHandler.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/ws-security-dom/src/main/java/org/apache/wss4j/dom/handler/WSHandler.java
b/ws-security-dom/src/main/java/org/apache/wss4j/dom/handler/WSHandler.java
index 7a52b0915..ab4d3db73 100644
--- a/ws-security-dom/src/main/java/org/apache/wss4j/dom/handler/WSHandler.java
+++ b/ws-security-dom/src/main/java/org/apache/wss4j/dom/handler/WSHandler.java
@@ -1358,7 +1358,7 @@ public abstract class WSHandler {
* @return the value found.
* @throws IllegalArgumentException if <code>key</code> is null.
*/
- private String getString(String key, Map<String, Object> mc) {
+ protected String getString(String key, Map<String, Object> mc) {
if (key == null) {
throw new IllegalArgumentException("Key cannot be null");
}