KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > webservice > jbws643 > KeywordMonthlyReportType


1 /*
2  * JBoss, Home of Professional Open Source
3  * Copyright 2005, JBoss Inc., and individual contributors as indicated
4  * by the @authors tag. See the copyright.txt in the distribution for a
5  * full listing of individual contributors.
6  *
7  * This is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as
9  * published by the Free Software Foundation; either version 2.1 of
10  * the License, or (at your option) any later version.
11  *
12  * This software is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this software; if not, write to the Free
19  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
20  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
21  */

22 //Auto Generated by jbossws - Please do not edit!!!
23

24 package org.jboss.test.webservice.jbws643;
25
26 public class KeywordMonthlyReportType extends KeywordType
27 {
28
29    protected java.lang.Long JavaDoc searches;
30
31    protected java.lang.Long JavaDoc advancedImpressions;
32
33    protected java.lang.Boolean JavaDoc duplicate;
34
35    protected java.lang.Long JavaDoc contentMatchImpressions;
36
37    protected java.math.BigDecimal JavaDoc maxBid;
38
39    protected java.math.BigDecimal JavaDoc maxCost;
40
41    public KeywordMonthlyReportType()
42    {
43    }
44
45    public KeywordMonthlyReportType(java.lang.Long JavaDoc searches, java.lang.Long JavaDoc advancedImpressions, java.lang.Boolean JavaDoc duplicate,
46          java.lang.Long JavaDoc contentMatchImpressions, java.math.BigDecimal JavaDoc maxBid, java.math.BigDecimal JavaDoc maxCost)
47    {
48       this.searches = searches;
49       this.advancedImpressions = advancedImpressions;
50       this.duplicate = duplicate;
51       this.contentMatchImpressions = contentMatchImpressions;
52       this.maxBid = maxBid;
53       this.maxCost = maxCost;
54    }
55
56    public java.lang.Long JavaDoc getSearches()
57    {
58       return searches;
59    }
60
61    public void setSearches(java.lang.Long JavaDoc searches)
62    {
63       this.searches = searches;
64    }
65
66    public java.lang.Long JavaDoc getAdvancedImpressions()
67    {
68       return advancedImpressions;
69    }
70
71    public void setAdvancedImpressions(java.lang.Long JavaDoc advancedImpressions)
72    {
73       this.advancedImpressions = advancedImpressions;
74    }
75
76    public java.lang.Boolean JavaDoc getDuplicate()
77    {
78       return duplicate;
79    }
80
81    public void setDuplicate(java.lang.Boolean JavaDoc duplicate)
82    {
83       this.duplicate = duplicate;
84    }
85
86    public java.lang.Long JavaDoc getContentMatchImpressions()
87    {
88       return contentMatchImpressions;
89    }
90
91    public void setContentMatchImpressions(java.lang.Long JavaDoc contentMatchImpressions)
92    {
93       this.contentMatchImpressions = contentMatchImpressions;
94    }
95
96    public java.math.BigDecimal JavaDoc getMaxBid()
97    {
98       return maxBid;
99    }
100
101    public void setMaxBid(java.math.BigDecimal JavaDoc maxBid)
102    {
103       this.maxBid = maxBid;
104    }
105
106    public java.math.BigDecimal JavaDoc getMaxCost()
107    {
108       return maxCost;
109    }
110
111    public void setMaxCost(java.math.BigDecimal JavaDoc maxCost)
112    {
113       this.maxCost = maxCost;
114    }
115
116 }
117
Popular Tags