SDK DMF Support - from declarative to imperative - to support host per tenant (#1709)

Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-04-11 15:15:02 +03:00
committed by GitHub
parent c8220c43d6
commit b491d6d548
14 changed files with 352 additions and 443 deletions

View File

@@ -34,5 +34,22 @@ public class Tenant {
@Nullable
private String gatewayToken;
// amqp settings (if DMF is used)
@Nullable
private DMF dmf;
private boolean downloadAuthenticationEnabled = true;
@Data
@ToString
public static class DMF {
@Nullable
private String virtualHost;
@Nullable
private String username;
@Nullable
@ToString.Exclude
private String password;
}
}