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

com.clouway.oauth2.authorization.AuthorizationResponse Maven / Gradle / Ivy

package com.clouway.oauth2.authorization;

/**
 * @author Ivan Stefanov 
 */
public class AuthorizationResponse {
  private final String code;
  private final String redirectURI;

  public AuthorizationResponse(String code, String redirectURI) {
    this.code = code;
    this.redirectURI = redirectURI;
  }

  public String buildURI() {
    return redirectURI + "?code=" + code;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy