/** * 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; /** * * @author mark * @since 31.07.2018 */ public class Address implements Serializable { /** serialVersionUID */ private static final long serialVersionUID = -7029347072601016174L; private String city; private String street; private String zip; /** * Returns the city. * @return the city */ public String getCity() { return city; } /** * Sets the city. * @param city the city to set */ public void setCity(String city) { this.city = city; } /** * Returns the street. * @return the street */ public String getStreet() { return street; } /** * Sets the street. * @param street the street to set */ public void setStreet(String street) { this.street = street; } /** * Returns the zip. * @return the zip */ public String getZip() { return zip; } /** * Sets the zip. * @param zip the zip to set */ public void setZip(String zip) { this.zip = zip; } }