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

com.mx.path.model.mdx.model.profile.NewPassword Maven / Gradle / Ivy

package com.mx.path.model.mdx.model.profile;

import java.util.List;

import com.google.gson.annotations.SerializedName;
import com.mx.path.model.mdx.model.MdxBase;
import com.mx.path.model.mdx.model.challenges.Challenge;

/**
 * Replaces Password class allowing to update user password using mfa
 */
public final class NewPassword extends MdxBase {

  private List challenges;

  @SerializedName("current_password")
  private String currentPassword;
  @SerializedName("new_password")
  private String newPassword;

  public NewPassword() {
  }

  public List getChallenges() {
    return challenges;
  }

  public void setChallenges(List challenges) {
    this.challenges = challenges;
  }

  public String getCurrentPassword() {
    return currentPassword;
  }

  public void setCurrentPassword(String currentPassword) {
    this.currentPassword = currentPassword;
  }

  public String getNewPassword() {
    return newPassword;
  }

  public void setNewPassword(String newPassword) {
    this.newPassword = newPassword;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy