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

com.nimbusds.openid.connect.provider.spi.config.SystemPropertiesSource Maven / Gradle / Ivy

Go to download

SDK for Connect2id Server extensions, such as OpenID Connect claims sources and OAuth 2.0 grant handlers

There is a newer version: 5.8
Show newest version
package com.nimbusds.openid.connect.provider.spi.config;


import java.util.Properties;


/**
 * Service Provider Interface (SPI) for sourcing Java system properties at
 * Connect2id server startup. The system properties can be used to override
 * selected or all Connect2id server configuration properties.
 */
public interface SystemPropertiesSource {
	
	
	/**
	 * Returns properties to be merged into the existing Java system
	 * properties at Connect2id server startup.
	 *
	 * @return The properties.
	 */
	Properties getProperties();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy