1   /**
2    * Copyright (c) 2000-2008 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.tags.service.base;
24  
25  import com.liferay.portal.kernel.annotation.BeanReference;
26  import com.liferay.portal.service.base.PrincipalBean;
27  
28  import com.liferay.portlet.tags.service.TagsAssetLocalService;
29  import com.liferay.portlet.tags.service.TagsAssetService;
30  import com.liferay.portlet.tags.service.TagsEntryLocalService;
31  import com.liferay.portlet.tags.service.TagsEntryService;
32  import com.liferay.portlet.tags.service.TagsPropertyLocalService;
33  import com.liferay.portlet.tags.service.TagsPropertyService;
34  import com.liferay.portlet.tags.service.TagsSourceLocalService;
35  import com.liferay.portlet.tags.service.TagsSourceService;
36  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
37  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
38  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
39  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
40  import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
41  import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
42  import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
43  import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
44  
45  /**
46   * <a href="TagsSourceServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
47   *
48   * @author Brian Wing Shun Chan
49   *
50   */
51  public abstract class TagsSourceServiceBaseImpl extends PrincipalBean
52      implements TagsSourceService {
53      public TagsAssetLocalService getTagsAssetLocalService() {
54          return tagsAssetLocalService;
55      }
56  
57      public void setTagsAssetLocalService(
58          TagsAssetLocalService tagsAssetLocalService) {
59          this.tagsAssetLocalService = tagsAssetLocalService;
60      }
61  
62      public TagsAssetService getTagsAssetService() {
63          return tagsAssetService;
64      }
65  
66      public void setTagsAssetService(TagsAssetService tagsAssetService) {
67          this.tagsAssetService = tagsAssetService;
68      }
69  
70      public TagsAssetPersistence getTagsAssetPersistence() {
71          return tagsAssetPersistence;
72      }
73  
74      public void setTagsAssetPersistence(
75          TagsAssetPersistence tagsAssetPersistence) {
76          this.tagsAssetPersistence = tagsAssetPersistence;
77      }
78  
79      public TagsAssetFinder getTagsAssetFinder() {
80          return tagsAssetFinder;
81      }
82  
83      public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
84          this.tagsAssetFinder = tagsAssetFinder;
85      }
86  
87      public TagsEntryLocalService getTagsEntryLocalService() {
88          return tagsEntryLocalService;
89      }
90  
91      public void setTagsEntryLocalService(
92          TagsEntryLocalService tagsEntryLocalService) {
93          this.tagsEntryLocalService = tagsEntryLocalService;
94      }
95  
96      public TagsEntryService getTagsEntryService() {
97          return tagsEntryService;
98      }
99  
100     public void setTagsEntryService(TagsEntryService tagsEntryService) {
101         this.tagsEntryService = tagsEntryService;
102     }
103 
104     public TagsEntryPersistence getTagsEntryPersistence() {
105         return tagsEntryPersistence;
106     }
107 
108     public void setTagsEntryPersistence(
109         TagsEntryPersistence tagsEntryPersistence) {
110         this.tagsEntryPersistence = tagsEntryPersistence;
111     }
112 
113     public TagsEntryFinder getTagsEntryFinder() {
114         return tagsEntryFinder;
115     }
116 
117     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
118         this.tagsEntryFinder = tagsEntryFinder;
119     }
120 
121     public TagsPropertyLocalService getTagsPropertyLocalService() {
122         return tagsPropertyLocalService;
123     }
124 
125     public void setTagsPropertyLocalService(
126         TagsPropertyLocalService tagsPropertyLocalService) {
127         this.tagsPropertyLocalService = tagsPropertyLocalService;
128     }
129 
130     public TagsPropertyService getTagsPropertyService() {
131         return tagsPropertyService;
132     }
133 
134     public void setTagsPropertyService(TagsPropertyService tagsPropertyService) {
135         this.tagsPropertyService = tagsPropertyService;
136     }
137 
138     public TagsPropertyPersistence getTagsPropertyPersistence() {
139         return tagsPropertyPersistence;
140     }
141 
142     public void setTagsPropertyPersistence(
143         TagsPropertyPersistence tagsPropertyPersistence) {
144         this.tagsPropertyPersistence = tagsPropertyPersistence;
145     }
146 
147     public TagsPropertyFinder getTagsPropertyFinder() {
148         return tagsPropertyFinder;
149     }
150 
151     public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder) {
152         this.tagsPropertyFinder = tagsPropertyFinder;
153     }
154 
155     public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
156         return tagsPropertyKeyFinder;
157     }
158 
159     public void setTagsPropertyKeyFinder(
160         TagsPropertyKeyFinder tagsPropertyKeyFinder) {
161         this.tagsPropertyKeyFinder = tagsPropertyKeyFinder;
162     }
163 
164     public TagsSourceLocalService getTagsSourceLocalService() {
165         return tagsSourceLocalService;
166     }
167 
168     public void setTagsSourceLocalService(
169         TagsSourceLocalService tagsSourceLocalService) {
170         this.tagsSourceLocalService = tagsSourceLocalService;
171     }
172 
173     public TagsSourceService getTagsSourceService() {
174         return tagsSourceService;
175     }
176 
177     public void setTagsSourceService(TagsSourceService tagsSourceService) {
178         this.tagsSourceService = tagsSourceService;
179     }
180 
181     public TagsSourcePersistence getTagsSourcePersistence() {
182         return tagsSourcePersistence;
183     }
184 
185     public void setTagsSourcePersistence(
186         TagsSourcePersistence tagsSourcePersistence) {
187         this.tagsSourcePersistence = tagsSourcePersistence;
188     }
189 
190     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
191     protected TagsAssetLocalService tagsAssetLocalService;
192     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
193     protected TagsAssetService tagsAssetService;
194     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
195     protected TagsAssetPersistence tagsAssetPersistence;
196     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
197     protected TagsAssetFinder tagsAssetFinder;
198     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
199     protected TagsEntryLocalService tagsEntryLocalService;
200     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
201     protected TagsEntryService tagsEntryService;
202     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
203     protected TagsEntryPersistence tagsEntryPersistence;
204     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
205     protected TagsEntryFinder tagsEntryFinder;
206     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
207     protected TagsPropertyLocalService tagsPropertyLocalService;
208     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
209     protected TagsPropertyService tagsPropertyService;
210     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
211     protected TagsPropertyPersistence tagsPropertyPersistence;
212     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
213     protected TagsPropertyFinder tagsPropertyFinder;
214     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
215     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
216     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
217     protected TagsSourceLocalService tagsSourceLocalService;
218     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
219     protected TagsSourceService tagsSourceService;
220     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
221     protected TagsSourcePersistence tagsSourcePersistence;
222 }