/******************************************************************************* * Copyright (c) 2011, 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: * Vikram Bhatia - initial API and implementation ******************************************************************************/ package org.eclipse.persistence.testing.models.vehicle; public class EngineType implements java.io.Serializable { public Integer id; public String type; public void setId(Integer aid) { id = aid; } public void setType(String aType) { type = aType; } public Integer getId() { return id; } public String getType() { return type; } public static EngineType example1() { EngineType example = new EngineType(); example.setId(new Integer(1)); example.setType("Steel"); return example; } public static EngineType example2() { EngineType example = new EngineType(); example.setId(new Integer(2)); example.setType("AlumSteel"); return example; } }