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.service.base.PrincipalBean;
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     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
190     protected TagsAssetLocalService tagsAssetLocalService;
191     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
192     protected TagsAssetService tagsAssetService;
193     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
194     protected TagsAssetPersistence tagsAssetPersistence;
195     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
196     protected TagsAssetFinder tagsAssetFinder;
197     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
198     protected TagsEntryLocalService tagsEntryLocalService;
199     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
200     protected TagsEntryService tagsEntryService;
201     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
202     protected TagsEntryPersistence tagsEntryPersistence;
203     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
204     protected TagsEntryFinder tagsEntryFinder;
205     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
206     protected TagsPropertyLocalService tagsPropertyLocalService;
207     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
208     protected TagsPropertyService tagsPropertyService;
209     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
210     protected TagsPropertyPersistence tagsPropertyPersistence;
211     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
212     protected TagsPropertyFinder tagsPropertyFinder;
213     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
214     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
215     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
216     protected TagsSourceLocalService tagsSourceLocalService;
217     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
218     protected TagsSourceService tagsSourceService;
219     @javax.annotation.Resource(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
220     protected TagsSourcePersistence tagsSourcePersistence;
221 }