
com.agimatec.annomark.example.transfer.TransferUser Maven / Gradle / Ivy
package com.agimatec.annomark.example.transfer;
import java.io.Serializable;
/******************
* CODE GENERATED BY "java-pojo.ftl" - DO NOT EDIT!
*
* source: {@link com.agimatec.annomark.example.model.UserCore}
* a User entity
******************/
public class TransferUser implements Serializable
{
/**
* source: userId
**/
private Long userId;
/**
* source: email
**/
private String emailAddress;
/**
* source: mobileNumber
* the mobile number incl. prefix
**/
private String mobileNumber;
/**
* source: firstName
**/
private String firstName;
/**
* source: lastName
**/
private String lastName;
/**
* source: userIdentification
**/
private String userIdentification;
/**
* source: registrationTime
**/
private java.sql.Timestamp registrationTime;
/**
* source: type
**/
private String type;
/**
* source: gender
**/
private String gender;
/**
* source: localeCode
**/
private String localeCode;
/**
* source: state
**/
private String state;
/**
* source: role
**/
private TransferRoleLight role;
/**
* source: address
**/
private TransferAddress address;
/**
* source: cards
**/
private java.util.List cards;
public Long getUserId() {
return userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getEmailAddress() {
return emailAddress;
}
public void setEmailAddress(String emailAddress) {
this.emailAddress = emailAddress;
}
public String getMobileNumber() {
return mobileNumber;
}
public void setMobileNumber(String mobileNumber) {
this.mobileNumber = mobileNumber;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public String getUserIdentification() {
return userIdentification;
}
public void setUserIdentification(String userIdentification) {
this.userIdentification = userIdentification;
}
public java.sql.Timestamp getRegistrationTime() {
return registrationTime;
}
public void setRegistrationTime(java.sql.Timestamp registrationTime) {
this.registrationTime = registrationTime;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getGender() {
return gender;
}
public void setGender(String gender) {
this.gender = gender;
}
public String getLocaleCode() {
return localeCode;
}
public void setLocaleCode(String localeCode) {
this.localeCode = localeCode;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public TransferRoleLight getRole() {
return role;
}
public void setRole(TransferRoleLight role) {
this.role = role;
}
public TransferAddress getAddress() {
return address;
}
public void setAddress(TransferAddress address) {
this.address = address;
}
public java.util.List getCards() {
return cards;
}
public void setCards(java.util.List cards) {
this.cards = cards;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy