com.yoti.api.spring.DigitalIdentityProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yoti-sdk-spring-boot-auto-config Show documentation
Show all versions of yoti-sdk-spring-boot-auto-config Show documentation
Library to integrate the Java Yoti SDK with Spring Boot Applications
The newest version!
package com.yoti.api.spring;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties(prefix = "com.yoti.identity")
public class DigitalIdentityProperties {
private String applicationId;
public String getApplicationId() {
return applicationId;
}
public void setApplicationId(String id) {
applicationId = id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy