net.finmath.smartcontract.valuation.service.utils.ApplicationProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finmath-smart-derivative-contract Show documentation
Show all versions of finmath-smart-derivative-contract Show documentation
Project to support the implementation a of smart derivative contract.
package net.finmath.smartcontract.valuation.service.utils;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* Implements list of sdcUsers from application.yml
*/
@Component
@ConfigurationProperties(prefix = "data.sdc")
public class ApplicationProperties {
private List users;
public List getUsers() {
return users;
}
public void setUsers(List users) {
this.users = users;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy