1
2
3
4
5
6
7
8
9
10
11
12
13
14 package org.gscg.singleuser.interactionlayer.dataobjects;
15
16 import java.io.Serializable;
17 import java.util.Set;
18
19 /***
20 * The BusinessHeaderData object is used to initialize a graphical user
21 * interface with the products and their specs (e.g. name, preferred price etc.)
22 * <p>
23 * Copyright (c) 2003-2005 Delft University of Technology, Jaffalaan 5, 2628 BX
24 * Delft, the Netherlands. All rights reserved.
25 *
26 * See for project information <a href="http://www.simulation.tudelft.nl/">
27 * www.simulation.tudelft.nl </a>.
28 *
29 * The source code and binary code of this software is proprietary information
30 * of Delft University of Technology.
31 *
32 * @author <a
33 * href="http://www.tbm.tudelft.nl/webstaf/stijnh/index.htm">Stijn-Pieter
34 * van Houten </a>
35 * @version $Revision: 1.1 $ $Date: 2005/06/16 12:33:59 $
36 * @since 1.0.0
37 */
38 public class BusinessHeaderData implements Serializable
39 {
40 /*** the serial version uid */
41 private static final long serialVersionUID = 11L;
42
43 /*** the products */
44 private Set products = null;
45
46 /***
47 * constructs a new BusinessHeaderData
48 *
49 * @param products the sorted set with products
50 */
51 public BusinessHeaderData(final Set products)
52 {
53 super();
54 this.products = products;
55 }
56
57 /***
58 * @return Returns the products.
59 */
60 public Set getProducts()
61 {
62 return this.products;
63 }
64 }