com.alogient.cameleon.sdk.membership.vo.AuthenticationVo Maven / Gradle / Ivy
The newest version!
package com.alogient.cameleon.sdk.membership.vo;
import java.io.Serializable;
import java.util.Map;
/**
*
*/
public class AuthenticationVo implements Serializable {
private String userId;
private String username;
private String email;
private String comment;
private String passwordQuestion;
private Map customUserValues;
/**
* @return the user id
*/
public String getUserId() {
return userId;
}
/**
* @param userId userId to set
*/
public void setUserId(String userId) {
this.userId = userId;
}
/**
* @return the username
*/
public String getUsername() {
return username;
}
/**
* @param username the username to set
*/
public void setUsername(String username) {
this.username = username;
}
/**
* @return the email
*/
public String getEmail() {
return email;
}
/**
* @param email the email to set
*/
public void setEmail(String email) {
this.email = email;
}
/**
* @return the comment
*/
public String getComment() {
return comment;
}
/**
* @param comment the comment to set
*/
public void setComment(String comment) {
this.comment = comment;
}
/**
* @return the passwordQuestion
*/
public String getPasswordQuestion() {
return passwordQuestion;
}
/**
* @param passwordQuestion the passwordQuestion to set
*/
public void setPasswordQuestion(String passwordQuestion) {
this.passwordQuestion = passwordQuestion;
}
/**
* @return the custom user values
*/
public Map getCustomUserValues() {
return customUserValues;
}
/**
* @param customUserValues the custom user values to set
*/
public void setCustomUserValues(Map customUserValues) {
this.customUserValues = customUserValues;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy