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

com.xlrit.gears.server.security.AuthProperties Maven / Gradle / Ivy

There is a newer version: 1.17.6
Show newest version
package com.xlrit.gears.server.security;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

import lombok.Data;

@Data
@Component
@ConfigurationProperties(prefix = "gears.auth")
public class AuthProperties {
	private String mode;
	private Internal internal;
	private External external;

	@Data
	public static class Internal {
		private String secret;
		private String issuer;
	}

	@Data
	public static class External {
		private String clientId;
		private String authority;
		private String redirectUri;
		private String cacheLocation;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy