package parseWithModel.complete; import com.opencsv.bean.CsvBindByName; /** * This is the Java representation of a User */ public class UserModel { /** * name of the user */ @CsvBindByName private String name; /** * email of the user */ @CsvBindByName private String email; /** * get the name of the user * * @return name of the user */ public String getName() { return name; } /** * set the name of the user * * @param name name of the user */ public void setName(String name) { this.name = name; } /** * get the email of the user * * @return email of the user */ public String getEmail() { return email; } /** * set the email of the user * * @param email email of the user */ public void setEmail(String email) { this.email = email; } }