1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * Permission is hereby granted, free of charge, to any person obtaining a copy
5    * of this software and associated documentation files (the "Software"), to deal
6    * in the Software without restriction, including without limitation the rights
7    * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8    * copies of the Software, and to permit persons to whom the Software is
9    * furnished to do so, subject to the following conditions:
10   *
11   * The above copyright notice and this permission notice shall be included in
12   * all copies or substantial portions of the Software.
13   *
14   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20   * SOFTWARE.
21   */
22  
23  package com.liferay.portlet.expando.service.base;
24  
25  import com.liferay.counter.service.CounterLocalService;
26  import com.liferay.counter.service.CounterService;
27  
28  import com.liferay.portal.kernel.annotation.BeanReference;
29  import com.liferay.portal.service.base.PrincipalBean;
30  
31  import com.liferay.portlet.expando.service.ExpandoColumnLocalService;
32  import com.liferay.portlet.expando.service.ExpandoColumnService;
33  import com.liferay.portlet.expando.service.ExpandoRowLocalService;
34  import com.liferay.portlet.expando.service.ExpandoTableLocalService;
35  import com.liferay.portlet.expando.service.ExpandoValueLocalService;
36  import com.liferay.portlet.expando.service.ExpandoValueService;
37  import com.liferay.portlet.expando.service.persistence.ExpandoColumnFinder;
38  import com.liferay.portlet.expando.service.persistence.ExpandoColumnPersistence;
39  import com.liferay.portlet.expando.service.persistence.ExpandoRowFinder;
40  import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
41  import com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence;
42  import com.liferay.portlet.expando.service.persistence.ExpandoValueFinder;
43  import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
44  
45  /**
46   * <a href="ExpandoValueServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
47   *
48   * @author Brian Wing Shun Chan
49   *
50   */
51  public abstract class ExpandoValueServiceBaseImpl extends PrincipalBean
52      implements ExpandoValueService {
53      public ExpandoColumnLocalService getExpandoColumnLocalService() {
54          return expandoColumnLocalService;
55      }
56  
57      public void setExpandoColumnLocalService(
58          ExpandoColumnLocalService expandoColumnLocalService) {
59          this.expandoColumnLocalService = expandoColumnLocalService;
60      }
61  
62      public ExpandoColumnService getExpandoColumnService() {
63          return expandoColumnService;
64      }
65  
66      public void setExpandoColumnService(
67          ExpandoColumnService expandoColumnService) {
68          this.expandoColumnService = expandoColumnService;
69      }
70  
71      public ExpandoColumnPersistence getExpandoColumnPersistence() {
72          return expandoColumnPersistence;
73      }
74  
75      public void setExpandoColumnPersistence(
76          ExpandoColumnPersistence expandoColumnPersistence) {
77          this.expandoColumnPersistence = expandoColumnPersistence;
78      }
79  
80      public ExpandoColumnFinder getExpandoColumnFinder() {
81          return expandoColumnFinder;
82      }
83  
84      public void setExpandoColumnFinder(ExpandoColumnFinder expandoColumnFinder) {
85          this.expandoColumnFinder = expandoColumnFinder;
86      }
87  
88      public ExpandoRowLocalService getExpandoRowLocalService() {
89          return expandoRowLocalService;
90      }
91  
92      public void setExpandoRowLocalService(
93          ExpandoRowLocalService expandoRowLocalService) {
94          this.expandoRowLocalService = expandoRowLocalService;
95      }
96  
97      public ExpandoRowPersistence getExpandoRowPersistence() {
98          return expandoRowPersistence;
99      }
100 
101     public void setExpandoRowPersistence(
102         ExpandoRowPersistence expandoRowPersistence) {
103         this.expandoRowPersistence = expandoRowPersistence;
104     }
105 
106     public ExpandoRowFinder getExpandoRowFinder() {
107         return expandoRowFinder;
108     }
109 
110     public void setExpandoRowFinder(ExpandoRowFinder expandoRowFinder) {
111         this.expandoRowFinder = expandoRowFinder;
112     }
113 
114     public ExpandoTableLocalService getExpandoTableLocalService() {
115         return expandoTableLocalService;
116     }
117 
118     public void setExpandoTableLocalService(
119         ExpandoTableLocalService expandoTableLocalService) {
120         this.expandoTableLocalService = expandoTableLocalService;
121     }
122 
123     public ExpandoTablePersistence getExpandoTablePersistence() {
124         return expandoTablePersistence;
125     }
126 
127     public void setExpandoTablePersistence(
128         ExpandoTablePersistence expandoTablePersistence) {
129         this.expandoTablePersistence = expandoTablePersistence;
130     }
131 
132     public ExpandoValueLocalService getExpandoValueLocalService() {
133         return expandoValueLocalService;
134     }
135 
136     public void setExpandoValueLocalService(
137         ExpandoValueLocalService expandoValueLocalService) {
138         this.expandoValueLocalService = expandoValueLocalService;
139     }
140 
141     public ExpandoValueService getExpandoValueService() {
142         return expandoValueService;
143     }
144 
145     public void setExpandoValueService(ExpandoValueService expandoValueService) {
146         this.expandoValueService = expandoValueService;
147     }
148 
149     public ExpandoValuePersistence getExpandoValuePersistence() {
150         return expandoValuePersistence;
151     }
152 
153     public void setExpandoValuePersistence(
154         ExpandoValuePersistence expandoValuePersistence) {
155         this.expandoValuePersistence = expandoValuePersistence;
156     }
157 
158     public ExpandoValueFinder getExpandoValueFinder() {
159         return expandoValueFinder;
160     }
161 
162     public void setExpandoValueFinder(ExpandoValueFinder expandoValueFinder) {
163         this.expandoValueFinder = expandoValueFinder;
164     }
165 
166     public CounterLocalService getCounterLocalService() {
167         return counterLocalService;
168     }
169 
170     public void setCounterLocalService(CounterLocalService counterLocalService) {
171         this.counterLocalService = counterLocalService;
172     }
173 
174     public CounterService getCounterService() {
175         return counterService;
176     }
177 
178     public void setCounterService(CounterService counterService) {
179         this.counterService = counterService;
180     }
181 
182     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoColumnLocalService.impl")
183     protected ExpandoColumnLocalService expandoColumnLocalService;
184     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoColumnService.impl")
185     protected ExpandoColumnService expandoColumnService;
186     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoColumnPersistence.impl")
187     protected ExpandoColumnPersistence expandoColumnPersistence;
188     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoColumnFinder.impl")
189     protected ExpandoColumnFinder expandoColumnFinder;
190     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoRowLocalService.impl")
191     protected ExpandoRowLocalService expandoRowLocalService;
192     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence.impl")
193     protected ExpandoRowPersistence expandoRowPersistence;
194     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoRowFinder.impl")
195     protected ExpandoRowFinder expandoRowFinder;
196     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoTableLocalService.impl")
197     protected ExpandoTableLocalService expandoTableLocalService;
198     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence.impl")
199     protected ExpandoTablePersistence expandoTablePersistence;
200     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueLocalService.impl")
201     protected ExpandoValueLocalService expandoValueLocalService;
202     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueService.impl")
203     protected ExpandoValueService expandoValueService;
204     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence.impl")
205     protected ExpandoValuePersistence expandoValuePersistence;
206     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoValueFinder.impl")
207     protected ExpandoValueFinder expandoValueFinder;
208     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
209     protected CounterLocalService counterLocalService;
210     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
211     protected CounterService counterService;
212 }