Source code: com/sol/ProductDetails.java
1 /*
2 * Created on Jul 1, 2003
3 *
4 * To change the template for this generated file go to
5 * Window>Preferences>Java>Code Generation>Code and Comments
6 */
7 package com.sol;
8
9 /**
10 * @author administrator
11 *
12 * To change the template for this generated type comment go to
13 * Window>Preferences>Java>Code Generation>Code and Comments
14 */
15 public class ProductDetails
16 {
17 private String mobileName;
18 private String tariffName;
19 private String msisdn;
20 private int qty;
21
22 /**
23 *
24 */
25 public ProductDetails() {
26 super();
27 // TODO Auto-generated constructor stub
28 }
29
30 /**
31 * @return
32 */
33 public String getMobileName() {
34 return mobileName;
35 }
36
37 /**
38 * @return
39 */
40 public String getMsisdn() {
41 return msisdn;
42 }
43
44 /**
45 * @return
46 */
47 public int getQty() {
48 return qty;
49 }
50
51 /**
52 * @return
53 */
54 public String getTariffName() {
55 return tariffName;
56 }
57
58 /**
59 * @param string
60 */
61 public void setMobileName(String string) {
62 mobileName = string;
63 }
64
65 /**
66 * @param string
67 */
68 public void setMsisdn(String string) {
69 msisdn = string;
70 }
71
72 /**
73 * @param i
74 */
75 public void setQty(int i) {
76 qty = i;
77 }
78
79 /**
80 * @param string
81 */
82 public void setTariffName(String string) {
83 tariffName = string;
84 }
85
86 }