1   package net.sf.json.sample;
2   
3   import java.util.HashMap;
4   import java.util.Map;
5   
6   public class JSONTestBean {
7      private String email = "";
8      private String inventoryID = "";
9      private String notes = "";
10     private Map options = new HashMap();
11     private String rateID = "";
12  
13     public String getEmail() {
14        return email;
15     }
16  
17     public String getInventoryID() {
18        return inventoryID;
19     }
20  
21     public String getNotes() {
22        return notes;
23     }
24  
25     public Map getOptions() {
26        return options;
27     }
28  
29     public String getRateID() {
30        return rateID;
31     }
32  
33     public void setEmail( String email ) {
34        this.email = email;
35     }
36  
37     public void setInventoryID( String inventoryID ) {
38        this.inventoryID = inventoryID;
39     }
40  
41     public void setNotes( String notes ) {
42        this.notes = notes;
43     }
44  
45     public void setOptions( Map options ) {
46        this.options = options;
47     }
48  
49     public void setRateID( String rateID ) {
50        this.rateID = rateID;
51     }
52  }