package net.andreinc.mockneat.unit.objects.model; /** * Copyright 2017, Andrei N. Ciobanu Permission is hereby granted, free of charge, to any user obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, FREE_TEXT OF OR PARAM CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS PARAM THE SOFTWARE. */ import java.time.LocalDate; public class Customer1 { private String firstName; private String lastName; private Integer age; private String email; private String country; private String cardId; private LocalDate dateOfBirth; private String ipv4; private String ipv6; private String description; private String amex; private String cvv; 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 Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public String getCountry() { return country; } public void setCountry(String country) { this.country = country; } public String getCardId() { return cardId; } public void setCardId(String cardId) { this.cardId = cardId; } public LocalDate getDateOfBirth() { return dateOfBirth; } public void setDateOfBirth(LocalDate dateOfBirth) { this.dateOfBirth = dateOfBirth; } public String getIpv4() { return ipv4; } public void setIpv4(String ipv4) { this.ipv4 = ipv4; } public String getIpv6() { return ipv6; } public void setIpv6(String ipv6) { this.ipv6 = ipv6; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getAmex() { return amex; } public void setAmex(String amex) { this.amex = amex; } public String getCvv() { return cvv; } public void setCvv(String cvv) { this.cvv = cvv; } }