001package com.nimbusds.openid.connect.provider.spi.config;
002
003
004import java.util.Properties;
005
006
007/**
008 * Service Provider Interface (SPI) for sourcing Java system properties at
009 * Connect2id server startup. The system properties can be used to override
010 * selected or all Connect2id server configuration properties.
011 */
012public interface SystemPropertiesSource {
013        
014        
015        /**
016         * Returns properties to be merged into the existing Java system
017         * properties at Connect2id server startup.
018         *
019         * @return The properties.
020         */
021        Properties getProperties();
022}