/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2002-2003 * Sleepycat Software. All rights reserved. * * $Id: PartValue.java,v 1.2 2004/03/30 01:23:20 jtownsen Exp $ */ package com.sleepycat.examples.bdb.shipment.entity; import java.io.Serializable; /** * A PartValue serves as the value in the key/value pair for a part entity. * *

In this sample, PartValue is used only as the storage data for the * value, while the Part object is used as the value's object representation. * Because it is used directly as storage data using SerialFormat, it must be * Serializable.

* * @author Mark Hayes */ public class PartValue implements Serializable { private String name; private String color; private Weight weight; private String city; public PartValue(String name, String color, Weight weight, String city) { this.name = name; this.color = color; this.weight = weight; this.city = city; } public final String getName() { return name; } public final String getColor() { return color; } public final Weight getWeight() { return weight; } public final String getCity() { return city; } public String toString() { return "[PartValue: name=" + name + " color=" + color + " weight=" + weight + " city=" + city + ']'; } }