Compare commits
3 Commits
main
...
maverick-m
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0275bb9e9c | ||
|
|
98534cc909 | ||
|
|
60b26dc286 |
@ -10,7 +10,7 @@ plugins {
|
||||
}
|
||||
|
||||
val storageCommonsVersion = "2.43.0"
|
||||
val springBootVersion = "3.1.4"
|
||||
val springBootVersion = "3.1.5"
|
||||
val springCloudVersion = "4.0.4"
|
||||
val springRabbitTest = "3.0.9"
|
||||
val lombokVersion = "1.18.30"
|
||||
|
||||
@ -0,0 +1,20 @@
|
||||
package com.knecon.fforesight.tenantcommons.model;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class MongoDBConnection {
|
||||
|
||||
private String host;
|
||||
private String port;
|
||||
private String username;
|
||||
private String password;
|
||||
private String database;
|
||||
|
||||
}
|
||||
@ -22,6 +22,7 @@ public class TenantResponse {
|
||||
private SearchConnection searchConnection;
|
||||
private AzureStorageConnection azureStorageConnection;
|
||||
private S3StorageConnection s3StorageConnection;
|
||||
private MongoDBConnection mongoDBConnection;
|
||||
private AuthDetails authDetails;
|
||||
|
||||
private Map<String, Object> details = new HashMap<>();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user