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

uk.gov.ida.saml.metadata.MetadataResolverConfiguration Maven / Gradle / Ivy

There is a newer version: 3.4.6-277
Show newest version
package uk.gov.ida.saml.metadata;

import io.dropwizard.client.JerseyClientConfiguration;

import java.net.URI;
import java.security.KeyStore;
import java.util.Optional;

public interface MetadataResolverConfiguration {

    KeyStore getTrustStore();

    default Optional getHubTrustStore() {
        return Optional.empty();
    }

    default Optional getIdpTrustStore() {
        return Optional.empty();
    }

    URI getUri();

    Long getMinRefreshDelay();

    Long getMaxRefreshDelay();

    String getExpectedEntityId();

    JerseyClientConfiguration getJerseyClientConfiguration();

    String getJerseyClientName();

    String getHubFederationId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy