All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.finmath.smartcontract.valuation.service.utils.ApplicationProperties Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
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