Imported Upstream version 5.3.21
[platform/upstream/libdb.git] / examples / java / src / collections / ship / index / SupplierKey.java
1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002, 2012 Oracle and/or its affiliates.  All rights reserved.
5  *
6  * $Id$
7  */
8
9 package collections.ship.index;
10
11 import java.io.Serializable;
12
13 /**
14  * A SupplierKey serves as the key in the key/data pair for a supplier entity.
15  *
16  * <p> In this sample, SupplierKey is used both as the storage data for the key
17  * as well as the object binding to the key.  Because it is used directly as
18  * storage data using serial format, it must be Serializable. </p>
19  *
20  * @author Mark Hayes
21  */
22 public class SupplierKey implements Serializable {
23
24     private String number;
25
26     public SupplierKey(String number) {
27
28         this.number = number;
29     }
30
31     public final String getNumber() {
32
33         return number;
34     }
35
36     public String toString() {
37
38         return "[SupplierKey: number=" + number + ']';
39     }
40 }