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.ResourceLocalService;
30  import com.liferay.portal.service.ResourceService;
31  import com.liferay.portal.service.base.PrincipalBean;
32  import com.liferay.portal.service.persistence.ResourceFinder;
33  import com.liferay.portal.service.persistence.ResourcePersistence;
34  
35  import com.liferay.portlet.expando.service.ExpandoColumnLocalService;
36  import com.liferay.portlet.expando.service.ExpandoColumnService;
37  import com.liferay.portlet.expando.service.ExpandoRowLocalService;
38  import com.liferay.portlet.expando.service.ExpandoTableLocalService;
39  import com.liferay.portlet.expando.service.ExpandoValueLocalService;
40  import com.liferay.portlet.expando.service.ExpandoValueService;
41  import com.liferay.portlet.expando.service.persistence.ExpandoColumnFinder;
42  import com.liferay.portlet.expando.service.persistence.ExpandoColumnPersistence;
43  import com.liferay.portlet.expando.service.persistence.ExpandoRowFinder;
44  import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
45  import com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence;
46  import com.liferay.portlet.expando.service.persistence.ExpandoValueFinder;
47  import com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence;
48  
49  /**
50   * <a href="ExpandoColumnServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
51   *
52   * @author Brian Wing Shun Chan
53   *
54   */
55  public abstract class ExpandoColumnServiceBaseImpl extends PrincipalBean
56      implements ExpandoColumnService {
57      public ExpandoColumnLocalService getExpandoColumnLocalService() {
58          return expandoColumnLocalService;
59      }
60  
61      public void setExpandoColumnLocalService(
62          ExpandoColumnLocalService expandoColumnLocalService) {
63          this.expandoColumnLocalService = expandoColumnLocalService;
64      }
65  
66      public ExpandoColumnService getExpandoColumnService() {
67          return expandoColumnService;
68      }
69  
70      public void setExpandoColumnService(
71          ExpandoColumnService expandoColumnService) {
72          this.expandoColumnService = expandoColumnService;
73      }
74  
75      public ExpandoColumnPersistence getExpandoColumnPersistence() {
76          return expandoColumnPersistence;
77      }
78  
79      public void setExpandoColumnPersistence(
80          ExpandoColumnPersistence expandoColumnPersistence) {
81          this.expandoColumnPersistence = expandoColumnPersistence;
82      }
83  
84      public ExpandoColumnFinder getExpandoColumnFinder() {
85          return expandoColumnFinder;
86      }
87  
88      public void setExpandoColumnFinder(ExpandoColumnFinder expandoColumnFinder) {
89          this.expandoColumnFinder = expandoColumnFinder;
90      }
91  
92      public ExpandoRowLocalService getExpandoRowLocalService() {
93          return expandoRowLocalService;
94      }
95  
96      public void setExpandoRowLocalService(
97          ExpandoRowLocalService expandoRowLocalService) {
98          this.expandoRowLocalService = expandoRowLocalService;
99      }
100 
101     public ExpandoRowPersistence getExpandoRowPersistence() {
102         return expandoRowPersistence;
103     }
104 
105     public void setExpandoRowPersistence(
106         ExpandoRowPersistence expandoRowPersistence) {
107         this.expandoRowPersistence = expandoRowPersistence;
108     }
109 
110     public ExpandoRowFinder getExpandoRowFinder() {
111         return expandoRowFinder;
112     }
113 
114     public void setExpandoRowFinder(ExpandoRowFinder expandoRowFinder) {
115         this.expandoRowFinder = expandoRowFinder;
116     }
117 
118     public ExpandoTableLocalService getExpandoTableLocalService() {
119         return expandoTableLocalService;
120     }
121 
122     public void setExpandoTableLocalService(
123         ExpandoTableLocalService expandoTableLocalService) {
124         this.expandoTableLocalService = expandoTableLocalService;
125     }
126 
127     public ExpandoTablePersistence getExpandoTablePersistence() {
128         return expandoTablePersistence;
129     }
130 
131     public void setExpandoTablePersistence(
132         ExpandoTablePersistence expandoTablePersistence) {
133         this.expandoTablePersistence = expandoTablePersistence;
134     }
135 
136     public ExpandoValueLocalService getExpandoValueLocalService() {
137         return expandoValueLocalService;
138     }
139 
140     public void setExpandoValueLocalService(
141         ExpandoValueLocalService expandoValueLocalService) {
142         this.expandoValueLocalService = expandoValueLocalService;
143     }
144 
145     public ExpandoValueService getExpandoValueService() {
146         return expandoValueService;
147     }
148 
149     public void setExpandoValueService(ExpandoValueService expandoValueService) {
150         this.expandoValueService = expandoValueService;
151     }
152 
153     public ExpandoValuePersistence getExpandoValuePersistence() {
154         return expandoValuePersistence;
155     }
156 
157     public void setExpandoValuePersistence(
158         ExpandoValuePersistence expandoValuePersistence) {
159         this.expandoValuePersistence = expandoValuePersistence;
160     }
161 
162     public ExpandoValueFinder getExpandoValueFinder() {
163         return expandoValueFinder;
164     }
165 
166     public void setExpandoValueFinder(ExpandoValueFinder expandoValueFinder) {
167         this.expandoValueFinder = expandoValueFinder;
168     }
169 
170     public CounterLocalService getCounterLocalService() {
171         return counterLocalService;
172     }
173 
174     public void setCounterLocalService(CounterLocalService counterLocalService) {
175         this.counterLocalService = counterLocalService;
176     }
177 
178     public CounterService getCounterService() {
179         return counterService;
180     }
181 
182     public void setCounterService(CounterService counterService) {
183         this.counterService = counterService;
184     }
185 
186     public ResourceLocalService getResourceLocalService() {
187         return resourceLocalService;
188     }
189 
190     public void setResourceLocalService(
191         ResourceLocalService resourceLocalService) {
192         this.resourceLocalService = resourceLocalService;
193     }
194 
195     public ResourceService getResourceService() {
196         return resourceService;
197     }
198 
199     public void setResourceService(ResourceService resourceService) {
200         this.resourceService = resourceService;
201     }
202 
203     public ResourcePersistence getResourcePersistence() {
204         return resourcePersistence;
205     }
206 
207     public void setResourcePersistence(ResourcePersistence resourcePersistence) {
208         this.resourcePersistence = resourcePersistence;
209     }
210 
211     public ResourceFinder getResourceFinder() {
212         return resourceFinder;
213     }
214 
215     public void setResourceFinder(ResourceFinder resourceFinder) {
216         this.resourceFinder = resourceFinder;
217     }
218 
219     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoColumnLocalService.impl")
220     protected ExpandoColumnLocalService expandoColumnLocalService;
221     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoColumnService.impl")
222     protected ExpandoColumnService expandoColumnService;
223     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoColumnPersistence.impl")
224     protected ExpandoColumnPersistence expandoColumnPersistence;
225     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoColumnFinder.impl")
226     protected ExpandoColumnFinder expandoColumnFinder;
227     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoRowLocalService.impl")
228     protected ExpandoRowLocalService expandoRowLocalService;
229     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence.impl")
230     protected ExpandoRowPersistence expandoRowPersistence;
231     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoRowFinder.impl")
232     protected ExpandoRowFinder expandoRowFinder;
233     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoTableLocalService.impl")
234     protected ExpandoTableLocalService expandoTableLocalService;
235     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence.impl")
236     protected ExpandoTablePersistence expandoTablePersistence;
237     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueLocalService.impl")
238     protected ExpandoValueLocalService expandoValueLocalService;
239     @BeanReference(name = "com.liferay.portlet.expando.service.ExpandoValueService.impl")
240     protected ExpandoValueService expandoValueService;
241     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoValuePersistence.impl")
242     protected ExpandoValuePersistence expandoValuePersistence;
243     @BeanReference(name = "com.liferay.portlet.expando.service.persistence.ExpandoValueFinder.impl")
244     protected ExpandoValueFinder expandoValueFinder;
245     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
246     protected CounterLocalService counterLocalService;
247     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
248     protected CounterService counterService;
249     @BeanReference(name = "com.liferay.portal.service.ResourceLocalService.impl")
250     protected ResourceLocalService resourceLocalService;
251     @BeanReference(name = "com.liferay.portal.service.ResourceService.impl")
252     protected ResourceService resourceService;
253     @BeanReference(name = "com.liferay.portal.service.persistence.ResourcePersistence.impl")
254     protected ResourcePersistence resourcePersistence;
255     @BeanReference(name = "com.liferay.portal.service.persistence.ResourceFinder.impl")
256     protected ResourceFinder resourceFinder;
257 }