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

com.clouway.oauth2.http.Status Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.clouway.oauth2.http;

/**
 * Status is representing HTTP response status.
 *
 * @author Miroslav Genov ([email protected])
 */
public final class Status {
  public final int code;
  public final String redirectUrl;

  public Status(int code) {
    this.code = code;
    this.redirectUrl = null;
  }

  public Status(int code, String redirectUrl) {
    this.code = code;
    this.redirectUrl = redirectUrl;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy