This is an automated email from the ASF dual-hosted git repository.
hansva pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/main by this push:
new a406409db6 Encrypt the httppassword field in the rest client transform
(#6172)
a406409db6 is described below
commit a406409db63470e17175f2bdc204c46e742941a0
Author: Josh Downing <[email protected]>
AuthorDate: Thu Dec 11 00:23:42 2025 -0500
Encrypt the httppassword field in the rest client transform (#6172)
---
.../src/main/java/org/apache/hop/pipeline/transforms/rest/RestMeta.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/plugins/transforms/rest/src/main/java/org/apache/hop/pipeline/transforms/rest/RestMeta.java
b/plugins/transforms/rest/src/main/java/org/apache/hop/pipeline/transforms/rest/RestMeta.java
index b705474459..4ac1f9155f 100644
---
a/plugins/transforms/rest/src/main/java/org/apache/hop/pipeline/transforms/rest/RestMeta.java
+++
b/plugins/transforms/rest/src/main/java/org/apache/hop/pipeline/transforms/rest/RestMeta.java
@@ -125,7 +125,7 @@ public class RestMeta extends BaseTransformMeta<Rest,
RestData> {
@HopMetadataProperty(key = "httpLogin", injectionKey = "HTTP_LOGIN")
private String httpLogin;
- @HopMetadataProperty(key = "httpPassword", injectionKey = "HTTP_PASSWORD")
+ @HopMetadataProperty(key = "httpPassword", injectionKey = "HTTP_PASSWORD",
password = true)
private String httpPassword;
@HopMetadataProperty(key = "preemptive", injectionKey = "PREEMPTIVE")