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

io.imunity.furms.unity.client.oauth.UnityOauthCredentials Maven / Gradle / Ivy

There is a newer version: 4.3.1
Show newest version
/*
 * Copyright (c) 2021 Bixbit s.c. All rights reserved.
 *  See LICENSE file for licensing information.
 */

package io.imunity.furms.unity.client.oauth;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.ConstructorBinding;

@ConstructorBinding
@ConfigurationProperties(prefix = "spring.security.oauth2.client.registration.unity")
public class UnityOauthCredentials {

	private final String clientId;
	private final String clientSecret;

	public UnityOauthCredentials(String clientId, String clientSecret) {
		this.clientId = clientId;
		this.clientSecret = clientSecret;
	}

	public String getClientId() {
		return clientId;
	}

	public String getClientSecret() {
		return clientSecret;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy