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

com.clouway.oauth2.exampleapp.RegistrationRequestDTO Maven / Gradle / Ivy

The newest version!
package com.clouway.oauth2.exampleapp;

/**
 * @author Ivan Stefanov 
 */
class RegistrationRequestDTO {
  private String name;
  private String url;
  private String description;
  private String redirectURI;

  RegistrationRequestDTO() {
  }

  RegistrationRequestDTO(String name, String url, String description, String redirectURI) {
    this.name = name;
    this.url = url;
    this.description = description;
    this.redirectURI = redirectURI;
  }

  public String getName() {
    return name;
  }

  public String getUrl() {
    return url;
  }

  public String getDescription() {
    return description;
  }

  public String getRedirectURI() {
    return redirectURI;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy