/** * Copyright (c) 2012 - 2018 Data In Motion and others. * All rights reserved. * * This program and the accompanying materials are made available under the terms of the * Eclipse Public License v1.0 which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Data In Motion - initial API and implementation */ package org.gecko.rsa.provider.pojo; import java.io.Serializable; import java.util.Date; /** * * @author mark * @since 31.07.2018 */ public class Person implements Serializable { /** serialVersionUID */ private static final long serialVersionUID = 7372427028597412018L; private String firstName; private String lastName; private Date birthDate; private Address address; /** * Returns the firstName. * @return the firstName */ public String getFirstName() { return firstName; } /** * Sets the firstName. * @param firstName the firstName to set */ public void setFirstName(String firstName) { this.firstName = firstName; } /** * Returns the lastName. * @return the lastName */ public String getLastName() { return lastName; } /** * Sets the lastName. * @param lastName the lastName to set */ public void setLastName(String lastName) { this.lastName = lastName; } /** * Returns the birthDate. * @return the birthDate */ public Date getBirthDate() { return birthDate; } /** * Sets the birthDate. * @param birthDate the birthDate to set */ public void setBirthDate(Date birthDate) { this.birthDate = birthDate; } /** * Returns the address. * @return the address */ public Address getAddress() { return address; } /** * Sets the address. * @param address the address to set */ public void setAddress(Address address) { this.address = address; } }