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

com.clouway.oauth2.client.RegistrationResponse Maven / Gradle / Ivy

package com.clouway.oauth2.client;

/**
 * @author Ivan Stefanov 
 */
public class RegistrationResponse {
  public final String clientId;
  public final String clientSecret;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy