org.vfdtech.configs.AppProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utilities-and-generic-tools Show documentation
Show all versions of utilities-and-generic-tools Show documentation
A utilities service with generic tools implementation. Can be
plugged into your java project
package org.vfdtech.configs;
import lombok.Builder;
import lombok.Data;
@Data
@Builder
public class AppProperties {
private CbaOperations cbaOperations;
@Data
public static class CbaOperations {
private String cbaUrl;
private String fineractPlatformTenantId;
private String concatenatedBasicAuthCredentials;
}
}