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

com.mx.path.model.mdx.model.id.ForgotUsername Maven / Gradle / Ivy

There is a newer version: 16.0.0
Show newest version
package com.mx.path.model.mdx.model.id;

import java.util.List;

import com.mx.path.model.mdx.model.MdxBase;
import com.mx.path.model.mdx.model.challenges.Challenge;

public class ForgotUsername extends MdxBase {

  //PUT /forgot_username/challenges/:challenge_id will expect a single challenge
  private Challenge challenge;
  //POST /forgot_username will return challenges
  private List challenges;

  public ForgotUsername() {
  }

  public final Challenge getChallenge() {
    return challenge;
  }

  public final void setChallenge(Challenge newChallenge) {
    this.challenge = newChallenge;
  }

  public final List getChallenges() {
    return challenges;
  }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy