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

de.otto.edison.registry.configuration.ServiceRegistrySecurityOAuthProperties Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
package de.otto.edison.registry.configuration;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.bind.DefaultValue;

@ConfigurationProperties(prefix = "edison.serviceregistry.security.oauth2")
public record ServiceRegistrySecurityOAuthProperties(@DefaultValue("false") boolean enabled,
                                                     String tokenEndpoint,
                                                     String clientId,
                                                     String clientSecret,
                                                     @DefaultValue("10") int timeoutSeconds) {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy