1   /**
2    * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3    *
4    * The contents of this file are subject to the terms of the Liferay Enterprise
5    * Subscription License ("License"). You may not use this file except in
6    * compliance with the License. You can obtain a copy of the License by
7    * contacting Liferay, Inc. See the License for the specific language governing
8    * permissions and limitations under the License, including but not limited to
9    * distribution rights of the Software.
10   *
11   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
12   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13   * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
14   * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
15   * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
16   * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
17   * SOFTWARE.
18   */
19  
20  package com.liferay.portlet.tags.service.base;
21  
22  import com.liferay.portal.SystemException;
23  import com.liferay.portal.kernel.annotation.BeanReference;
24  import com.liferay.portal.service.base.PrincipalBean;
25  import com.liferay.portal.util.PortalUtil;
26  
27  import com.liferay.portlet.tags.service.TagsAssetLocalService;
28  import com.liferay.portlet.tags.service.TagsAssetService;
29  import com.liferay.portlet.tags.service.TagsEntryLocalService;
30  import com.liferay.portlet.tags.service.TagsEntryService;
31  import com.liferay.portlet.tags.service.TagsPropertyLocalService;
32  import com.liferay.portlet.tags.service.TagsPropertyService;
33  import com.liferay.portlet.tags.service.TagsSourceLocalService;
34  import com.liferay.portlet.tags.service.TagsSourceService;
35  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
36  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
37  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
38  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
39  import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
40  import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
41  import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
42  import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
43  
44  /**
45   * <a href="TagsSourceServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
46   *
47   * @author Brian Wing Shun Chan
48   *
49   */
50  public abstract class TagsSourceServiceBaseImpl extends PrincipalBean
51      implements TagsSourceService {
52      public TagsAssetLocalService getTagsAssetLocalService() {
53          return tagsAssetLocalService;
54      }
55  
56      public void setTagsAssetLocalService(
57          TagsAssetLocalService tagsAssetLocalService) {
58          this.tagsAssetLocalService = tagsAssetLocalService;
59      }
60  
61      public TagsAssetService getTagsAssetService() {
62          return tagsAssetService;
63      }
64  
65      public void setTagsAssetService(TagsAssetService tagsAssetService) {
66          this.tagsAssetService = tagsAssetService;
67      }
68  
69      public TagsAssetPersistence getTagsAssetPersistence() {
70          return tagsAssetPersistence;
71      }
72  
73      public void setTagsAssetPersistence(
74          TagsAssetPersistence tagsAssetPersistence) {
75          this.tagsAssetPersistence = tagsAssetPersistence;
76      }
77  
78      public TagsAssetFinder getTagsAssetFinder() {
79          return tagsAssetFinder;
80      }
81  
82      public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
83          this.tagsAssetFinder = tagsAssetFinder;
84      }
85  
86      public TagsEntryLocalService getTagsEntryLocalService() {
87          return tagsEntryLocalService;
88      }
89  
90      public void setTagsEntryLocalService(
91          TagsEntryLocalService tagsEntryLocalService) {
92          this.tagsEntryLocalService = tagsEntryLocalService;
93      }
94  
95      public TagsEntryService getTagsEntryService() {
96          return tagsEntryService;
97      }
98  
99      public void setTagsEntryService(TagsEntryService tagsEntryService) {
100         this.tagsEntryService = tagsEntryService;
101     }
102 
103     public TagsEntryPersistence getTagsEntryPersistence() {
104         return tagsEntryPersistence;
105     }
106 
107     public void setTagsEntryPersistence(
108         TagsEntryPersistence tagsEntryPersistence) {
109         this.tagsEntryPersistence = tagsEntryPersistence;
110     }
111 
112     public TagsEntryFinder getTagsEntryFinder() {
113         return tagsEntryFinder;
114     }
115 
116     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
117         this.tagsEntryFinder = tagsEntryFinder;
118     }
119 
120     public TagsPropertyLocalService getTagsPropertyLocalService() {
121         return tagsPropertyLocalService;
122     }
123 
124     public void setTagsPropertyLocalService(
125         TagsPropertyLocalService tagsPropertyLocalService) {
126         this.tagsPropertyLocalService = tagsPropertyLocalService;
127     }
128 
129     public TagsPropertyService getTagsPropertyService() {
130         return tagsPropertyService;
131     }
132 
133     public void setTagsPropertyService(TagsPropertyService tagsPropertyService) {
134         this.tagsPropertyService = tagsPropertyService;
135     }
136 
137     public TagsPropertyPersistence getTagsPropertyPersistence() {
138         return tagsPropertyPersistence;
139     }
140 
141     public void setTagsPropertyPersistence(
142         TagsPropertyPersistence tagsPropertyPersistence) {
143         this.tagsPropertyPersistence = tagsPropertyPersistence;
144     }
145 
146     public TagsPropertyFinder getTagsPropertyFinder() {
147         return tagsPropertyFinder;
148     }
149 
150     public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder) {
151         this.tagsPropertyFinder = tagsPropertyFinder;
152     }
153 
154     public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
155         return tagsPropertyKeyFinder;
156     }
157 
158     public void setTagsPropertyKeyFinder(
159         TagsPropertyKeyFinder tagsPropertyKeyFinder) {
160         this.tagsPropertyKeyFinder = tagsPropertyKeyFinder;
161     }
162 
163     public TagsSourceLocalService getTagsSourceLocalService() {
164         return tagsSourceLocalService;
165     }
166 
167     public void setTagsSourceLocalService(
168         TagsSourceLocalService tagsSourceLocalService) {
169         this.tagsSourceLocalService = tagsSourceLocalService;
170     }
171 
172     public TagsSourceService getTagsSourceService() {
173         return tagsSourceService;
174     }
175 
176     public void setTagsSourceService(TagsSourceService tagsSourceService) {
177         this.tagsSourceService = tagsSourceService;
178     }
179 
180     public TagsSourcePersistence getTagsSourcePersistence() {
181         return tagsSourcePersistence;
182     }
183 
184     public void setTagsSourcePersistence(
185         TagsSourcePersistence tagsSourcePersistence) {
186         this.tagsSourcePersistence = tagsSourcePersistence;
187     }
188 
189     protected void runSQL(String sql) throws SystemException {
190         try {
191             PortalUtil.runSQL(sql);
192         }
193         catch (Exception e) {
194             throw new SystemException(e);
195         }
196     }
197 
198     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
199     protected TagsAssetLocalService tagsAssetLocalService;
200     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
201     protected TagsAssetService tagsAssetService;
202     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
203     protected TagsAssetPersistence tagsAssetPersistence;
204     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
205     protected TagsAssetFinder tagsAssetFinder;
206     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
207     protected TagsEntryLocalService tagsEntryLocalService;
208     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
209     protected TagsEntryService tagsEntryService;
210     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
211     protected TagsEntryPersistence tagsEntryPersistence;
212     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
213     protected TagsEntryFinder tagsEntryFinder;
214     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
215     protected TagsPropertyLocalService tagsPropertyLocalService;
216     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
217     protected TagsPropertyService tagsPropertyService;
218     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
219     protected TagsPropertyPersistence tagsPropertyPersistence;
220     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
221     protected TagsPropertyFinder tagsPropertyFinder;
222     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
223     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
224     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
225     protected TagsSourceLocalService tagsSourceLocalService;
226     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
227     protected TagsSourceService tagsSourceService;
228     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
229     protected TagsSourcePersistence tagsSourcePersistence;
230 }