com.yoti.api.spring.YotiProperties 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")
public class YotiProperties {
private String applicationId;
private String scenarioId;
public String getApplicationId() {
return applicationId;
}
public void setApplicationId(String id) {
applicationId = id;
}
public String getScenarioId() {
return scenarioId;
}
public void setScenarioId(String id) {
scenarioId = id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy