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

com.sap.cloud.security.spring.config.XsuaaServiceConfigurations Maven / Gradle / Ivy

There is a newer version: 3.5.6
Show newest version
/**
 * SPDX-FileCopyrightText: 2018-2023 SAP SE or an SAP affiliate company and Cloud Security Client Java contributors
 * 

* SPDX-License-Identifier: Apache-2.0 */ package com.sap.cloud.security.spring.config; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.context.properties.NestedConfigurationProperty; import java.util.ArrayList; import java.util.List; @ConfigurationProperties("sap.security.services") public class XsuaaServiceConfigurations { @NestedConfigurationProperty private List xsuaa = new ArrayList<>(); public List getConfigurations() { return this.xsuaa; } public void setXsuaa(List xsuaa) { this.xsuaa = xsuaa; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy