/******************************************************************************* * Copyright (c) 1998, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Oracle - initial API and implementation from Oracle TopLink ******************************************************************************/ package org.eclipse.persistence.testing.tests.proxyindirection; /* * Address implementation. * * Implementation of the Address interface. * * @author Rick Barkhouse * @since 08/15/2000 15:51:05 */ public class AddressImpl implements Address { public int id; public String street; public String city; public String state; public String country; public String postalCode; public String getCity() { return this.city; } public String getCountry() { return this.country; } public int getID() { return this.id; } public String getPostalCode() { return this.postalCode; } public String getState() { return this.state; } public String getStreet() { return this.street; } public void setCity(String value) { this.city = value; } public void setCountry(String value) { this.country = value; } public void setID(int value) { this.id = value; } public void setPostalCode(String value) { this.postalCode = value; } public void setState(String value) { this.state = value; } public void setStreet(String value) { this.street = value; } public String toString() { return "[Address #" + getID() + "] " + getStreet() + ", " + getCity() + ", " + getState() + ", " + getCountry() + " " + getPostalCode(); } }