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

com.agimatec.annomark.example.transfer.TransferUserLight Maven / Gradle / Ivy

There is a newer version: 2.5.11
Show newest version
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 TransferUserLight implements Serializable { /** * source: userId **/ private Long userId; /** * source: firstName **/ private String firstName; /** * source: lastName **/ private String lastName; /** * source: userIdentification **/ private String userIdentification; /** * source: address **/ private TransferAddressLight address; public Long getUserId() { return userId; } public void setUserId(Long userId) { this.userId = userId; } 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 TransferAddressLight getAddress() { return address; } public void setAddress(TransferAddressLight address) { this.address = address; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy