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

com.github.ulisesbocchio.spring.boot.security.saml.properties.MetadataManagerProperties Maven / Gradle / Ivy

Go to download

Eases Integration between Spring Boot and spring-security-saml through properties and adapters

There is a newer version: 1.17
Show newest version
package com.github.ulisesbocchio.spring.boot.security.saml.properties;

import lombok.Data;

/**
 * Configuration Properties for {@link org.springframework.security.saml.metadata.MetadataManager}
 *
 * @author Ulises Bocchio
 */
@Data
public class MetadataManagerProperties {
    /**
     * Sets name of IDP to be used as default.
     */
    private String defaultIDP;

    /**
     * Sets nameID of SP hosted on this machine. This can either be called from springContext or automatically
     * during invocation of metadata generation filter.
     */
    private String hostedSpName;

    /**
     * Interval in milliseconds used for re-verification of metadata and their reload. Upon trigger each provider
     * is asked to return it's metadata, which might trigger their reloading. In case metadata is reloaded the
     * manager is notified and automatically refreshes all internal data by calling refreshMetadata.
     * 

* In case the value is smaller than zero the timer is not created. *

*/ private Long refreshCheckInterval = -1L; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy