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.counter.service.CounterLocalService;
23  import com.liferay.counter.service.CounterService;
24  
25  import com.liferay.portal.PortalException;
26  import com.liferay.portal.SystemException;
27  import com.liferay.portal.kernel.annotation.BeanReference;
28  import com.liferay.portal.kernel.dao.orm.DynamicQuery;
29  import com.liferay.portal.service.CompanyLocalService;
30  import com.liferay.portal.service.CompanyService;
31  import com.liferay.portal.service.GroupLocalService;
32  import com.liferay.portal.service.GroupService;
33  import com.liferay.portal.service.UserLocalService;
34  import com.liferay.portal.service.UserService;
35  import com.liferay.portal.service.persistence.CompanyPersistence;
36  import com.liferay.portal.service.persistence.GroupFinder;
37  import com.liferay.portal.service.persistence.GroupPersistence;
38  import com.liferay.portal.service.persistence.UserFinder;
39  import com.liferay.portal.service.persistence.UserPersistence;
40  import com.liferay.portal.util.PortalUtil;
41  
42  import com.liferay.portlet.blogs.service.BlogsEntryLocalService;
43  import com.liferay.portlet.blogs.service.BlogsEntryService;
44  import com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder;
45  import com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence;
46  import com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService;
47  import com.liferay.portlet.bookmarks.service.BookmarksEntryService;
48  import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder;
49  import com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence;
50  import com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService;
51  import com.liferay.portlet.documentlibrary.service.DLFileEntryService;
52  import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder;
53  import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence;
54  import com.liferay.portlet.journal.service.JournalArticleLocalService;
55  import com.liferay.portlet.journal.service.JournalArticleResourceLocalService;
56  import com.liferay.portlet.journal.service.JournalArticleService;
57  import com.liferay.portlet.journal.service.persistence.JournalArticleFinder;
58  import com.liferay.portlet.journal.service.persistence.JournalArticlePersistence;
59  import com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence;
60  import com.liferay.portlet.messageboards.service.MBMessageLocalService;
61  import com.liferay.portlet.messageboards.service.MBMessageService;
62  import com.liferay.portlet.messageboards.service.persistence.MBMessageFinder;
63  import com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence;
64  import com.liferay.portlet.tags.model.TagsAsset;
65  import com.liferay.portlet.tags.service.TagsAssetLocalService;
66  import com.liferay.portlet.tags.service.TagsAssetService;
67  import com.liferay.portlet.tags.service.TagsEntryLocalService;
68  import com.liferay.portlet.tags.service.TagsEntryService;
69  import com.liferay.portlet.tags.service.TagsPropertyLocalService;
70  import com.liferay.portlet.tags.service.TagsPropertyService;
71  import com.liferay.portlet.tags.service.TagsSourceLocalService;
72  import com.liferay.portlet.tags.service.TagsSourceService;
73  import com.liferay.portlet.tags.service.TagsVocabularyLocalService;
74  import com.liferay.portlet.tags.service.TagsVocabularyService;
75  import com.liferay.portlet.tags.service.persistence.TagsAssetFinder;
76  import com.liferay.portlet.tags.service.persistence.TagsAssetPersistence;
77  import com.liferay.portlet.tags.service.persistence.TagsEntryFinder;
78  import com.liferay.portlet.tags.service.persistence.TagsEntryPersistence;
79  import com.liferay.portlet.tags.service.persistence.TagsPropertyFinder;
80  import com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder;
81  import com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence;
82  import com.liferay.portlet.tags.service.persistence.TagsSourcePersistence;
83  import com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence;
84  import com.liferay.portlet.wiki.service.WikiPageLocalService;
85  import com.liferay.portlet.wiki.service.WikiPageResourceLocalService;
86  import com.liferay.portlet.wiki.service.WikiPageService;
87  import com.liferay.portlet.wiki.service.persistence.WikiPageFinder;
88  import com.liferay.portlet.wiki.service.persistence.WikiPagePersistence;
89  import com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence;
90  
91  import java.util.List;
92  
93  /**
94   * <a href="TagsAssetLocalServiceBaseImpl.java.html"><b><i>View Source</i></b></a>
95   *
96   * @author Brian Wing Shun Chan
97   *
98   */
99  public abstract class TagsAssetLocalServiceBaseImpl
100     implements TagsAssetLocalService {
101     public TagsAsset addTagsAsset(TagsAsset tagsAsset)
102         throws SystemException {
103         tagsAsset.setNew(true);
104 
105         return tagsAssetPersistence.update(tagsAsset, false);
106     }
107 
108     public TagsAsset createTagsAsset(long assetId) {
109         return tagsAssetPersistence.create(assetId);
110     }
111 
112     public void deleteTagsAsset(long assetId)
113         throws PortalException, SystemException {
114         tagsAssetPersistence.remove(assetId);
115     }
116 
117     public void deleteTagsAsset(TagsAsset tagsAsset) throws SystemException {
118         tagsAssetPersistence.remove(tagsAsset);
119     }
120 
121     public List<Object> dynamicQuery(DynamicQuery dynamicQuery)
122         throws SystemException {
123         return tagsAssetPersistence.findWithDynamicQuery(dynamicQuery);
124     }
125 
126     public List<Object> dynamicQuery(DynamicQuery dynamicQuery, int start,
127         int end) throws SystemException {
128         return tagsAssetPersistence.findWithDynamicQuery(dynamicQuery, start,
129             end);
130     }
131 
132     public TagsAsset getTagsAsset(long assetId)
133         throws PortalException, SystemException {
134         return tagsAssetPersistence.findByPrimaryKey(assetId);
135     }
136 
137     public List<TagsAsset> getTagsAssets(int start, int end)
138         throws SystemException {
139         return tagsAssetPersistence.findAll(start, end);
140     }
141 
142     public int getTagsAssetsCount() throws SystemException {
143         return tagsAssetPersistence.countAll();
144     }
145 
146     public TagsAsset updateTagsAsset(TagsAsset tagsAsset)
147         throws SystemException {
148         tagsAsset.setNew(false);
149 
150         return tagsAssetPersistence.update(tagsAsset, true);
151     }
152 
153     public TagsAsset updateTagsAsset(TagsAsset tagsAsset, boolean merge)
154         throws SystemException {
155         tagsAsset.setNew(false);
156 
157         return tagsAssetPersistence.update(tagsAsset, merge);
158     }
159 
160     public TagsAssetLocalService getTagsAssetLocalService() {
161         return tagsAssetLocalService;
162     }
163 
164     public void setTagsAssetLocalService(
165         TagsAssetLocalService tagsAssetLocalService) {
166         this.tagsAssetLocalService = tagsAssetLocalService;
167     }
168 
169     public TagsAssetService getTagsAssetService() {
170         return tagsAssetService;
171     }
172 
173     public void setTagsAssetService(TagsAssetService tagsAssetService) {
174         this.tagsAssetService = tagsAssetService;
175     }
176 
177     public TagsAssetPersistence getTagsAssetPersistence() {
178         return tagsAssetPersistence;
179     }
180 
181     public void setTagsAssetPersistence(
182         TagsAssetPersistence tagsAssetPersistence) {
183         this.tagsAssetPersistence = tagsAssetPersistence;
184     }
185 
186     public TagsAssetFinder getTagsAssetFinder() {
187         return tagsAssetFinder;
188     }
189 
190     public void setTagsAssetFinder(TagsAssetFinder tagsAssetFinder) {
191         this.tagsAssetFinder = tagsAssetFinder;
192     }
193 
194     public TagsEntryLocalService getTagsEntryLocalService() {
195         return tagsEntryLocalService;
196     }
197 
198     public void setTagsEntryLocalService(
199         TagsEntryLocalService tagsEntryLocalService) {
200         this.tagsEntryLocalService = tagsEntryLocalService;
201     }
202 
203     public TagsEntryService getTagsEntryService() {
204         return tagsEntryService;
205     }
206 
207     public void setTagsEntryService(TagsEntryService tagsEntryService) {
208         this.tagsEntryService = tagsEntryService;
209     }
210 
211     public TagsEntryPersistence getTagsEntryPersistence() {
212         return tagsEntryPersistence;
213     }
214 
215     public void setTagsEntryPersistence(
216         TagsEntryPersistence tagsEntryPersistence) {
217         this.tagsEntryPersistence = tagsEntryPersistence;
218     }
219 
220     public TagsEntryFinder getTagsEntryFinder() {
221         return tagsEntryFinder;
222     }
223 
224     public void setTagsEntryFinder(TagsEntryFinder tagsEntryFinder) {
225         this.tagsEntryFinder = tagsEntryFinder;
226     }
227 
228     public TagsPropertyLocalService getTagsPropertyLocalService() {
229         return tagsPropertyLocalService;
230     }
231 
232     public void setTagsPropertyLocalService(
233         TagsPropertyLocalService tagsPropertyLocalService) {
234         this.tagsPropertyLocalService = tagsPropertyLocalService;
235     }
236 
237     public TagsPropertyService getTagsPropertyService() {
238         return tagsPropertyService;
239     }
240 
241     public void setTagsPropertyService(TagsPropertyService tagsPropertyService) {
242         this.tagsPropertyService = tagsPropertyService;
243     }
244 
245     public TagsPropertyPersistence getTagsPropertyPersistence() {
246         return tagsPropertyPersistence;
247     }
248 
249     public void setTagsPropertyPersistence(
250         TagsPropertyPersistence tagsPropertyPersistence) {
251         this.tagsPropertyPersistence = tagsPropertyPersistence;
252     }
253 
254     public TagsPropertyFinder getTagsPropertyFinder() {
255         return tagsPropertyFinder;
256     }
257 
258     public void setTagsPropertyFinder(TagsPropertyFinder tagsPropertyFinder) {
259         this.tagsPropertyFinder = tagsPropertyFinder;
260     }
261 
262     public TagsPropertyKeyFinder getTagsPropertyKeyFinder() {
263         return tagsPropertyKeyFinder;
264     }
265 
266     public void setTagsPropertyKeyFinder(
267         TagsPropertyKeyFinder tagsPropertyKeyFinder) {
268         this.tagsPropertyKeyFinder = tagsPropertyKeyFinder;
269     }
270 
271     public TagsSourceLocalService getTagsSourceLocalService() {
272         return tagsSourceLocalService;
273     }
274 
275     public void setTagsSourceLocalService(
276         TagsSourceLocalService tagsSourceLocalService) {
277         this.tagsSourceLocalService = tagsSourceLocalService;
278     }
279 
280     public TagsSourceService getTagsSourceService() {
281         return tagsSourceService;
282     }
283 
284     public void setTagsSourceService(TagsSourceService tagsSourceService) {
285         this.tagsSourceService = tagsSourceService;
286     }
287 
288     public TagsSourcePersistence getTagsSourcePersistence() {
289         return tagsSourcePersistence;
290     }
291 
292     public void setTagsSourcePersistence(
293         TagsSourcePersistence tagsSourcePersistence) {
294         this.tagsSourcePersistence = tagsSourcePersistence;
295     }
296 
297     public TagsVocabularyLocalService getTagsVocabularyLocalService() {
298         return tagsVocabularyLocalService;
299     }
300 
301     public void setTagsVocabularyLocalService(
302         TagsVocabularyLocalService tagsVocabularyLocalService) {
303         this.tagsVocabularyLocalService = tagsVocabularyLocalService;
304     }
305 
306     public TagsVocabularyService getTagsVocabularyService() {
307         return tagsVocabularyService;
308     }
309 
310     public void setTagsVocabularyService(
311         TagsVocabularyService tagsVocabularyService) {
312         this.tagsVocabularyService = tagsVocabularyService;
313     }
314 
315     public TagsVocabularyPersistence getTagsVocabularyPersistence() {
316         return tagsVocabularyPersistence;
317     }
318 
319     public void setTagsVocabularyPersistence(
320         TagsVocabularyPersistence tagsVocabularyPersistence) {
321         this.tagsVocabularyPersistence = tagsVocabularyPersistence;
322     }
323 
324     public CounterLocalService getCounterLocalService() {
325         return counterLocalService;
326     }
327 
328     public void setCounterLocalService(CounterLocalService counterLocalService) {
329         this.counterLocalService = counterLocalService;
330     }
331 
332     public CounterService getCounterService() {
333         return counterService;
334     }
335 
336     public void setCounterService(CounterService counterService) {
337         this.counterService = counterService;
338     }
339 
340     public CompanyLocalService getCompanyLocalService() {
341         return companyLocalService;
342     }
343 
344     public void setCompanyLocalService(CompanyLocalService companyLocalService) {
345         this.companyLocalService = companyLocalService;
346     }
347 
348     public CompanyService getCompanyService() {
349         return companyService;
350     }
351 
352     public void setCompanyService(CompanyService companyService) {
353         this.companyService = companyService;
354     }
355 
356     public CompanyPersistence getCompanyPersistence() {
357         return companyPersistence;
358     }
359 
360     public void setCompanyPersistence(CompanyPersistence companyPersistence) {
361         this.companyPersistence = companyPersistence;
362     }
363 
364     public GroupLocalService getGroupLocalService() {
365         return groupLocalService;
366     }
367 
368     public void setGroupLocalService(GroupLocalService groupLocalService) {
369         this.groupLocalService = groupLocalService;
370     }
371 
372     public GroupService getGroupService() {
373         return groupService;
374     }
375 
376     public void setGroupService(GroupService groupService) {
377         this.groupService = groupService;
378     }
379 
380     public GroupPersistence getGroupPersistence() {
381         return groupPersistence;
382     }
383 
384     public void setGroupPersistence(GroupPersistence groupPersistence) {
385         this.groupPersistence = groupPersistence;
386     }
387 
388     public GroupFinder getGroupFinder() {
389         return groupFinder;
390     }
391 
392     public void setGroupFinder(GroupFinder groupFinder) {
393         this.groupFinder = groupFinder;
394     }
395 
396     public UserLocalService getUserLocalService() {
397         return userLocalService;
398     }
399 
400     public void setUserLocalService(UserLocalService userLocalService) {
401         this.userLocalService = userLocalService;
402     }
403 
404     public UserService getUserService() {
405         return userService;
406     }
407 
408     public void setUserService(UserService userService) {
409         this.userService = userService;
410     }
411 
412     public UserPersistence getUserPersistence() {
413         return userPersistence;
414     }
415 
416     public void setUserPersistence(UserPersistence userPersistence) {
417         this.userPersistence = userPersistence;
418     }
419 
420     public UserFinder getUserFinder() {
421         return userFinder;
422     }
423 
424     public void setUserFinder(UserFinder userFinder) {
425         this.userFinder = userFinder;
426     }
427 
428     public BlogsEntryLocalService getBlogsEntryLocalService() {
429         return blogsEntryLocalService;
430     }
431 
432     public void setBlogsEntryLocalService(
433         BlogsEntryLocalService blogsEntryLocalService) {
434         this.blogsEntryLocalService = blogsEntryLocalService;
435     }
436 
437     public BlogsEntryService getBlogsEntryService() {
438         return blogsEntryService;
439     }
440 
441     public void setBlogsEntryService(BlogsEntryService blogsEntryService) {
442         this.blogsEntryService = blogsEntryService;
443     }
444 
445     public BlogsEntryPersistence getBlogsEntryPersistence() {
446         return blogsEntryPersistence;
447     }
448 
449     public void setBlogsEntryPersistence(
450         BlogsEntryPersistence blogsEntryPersistence) {
451         this.blogsEntryPersistence = blogsEntryPersistence;
452     }
453 
454     public BlogsEntryFinder getBlogsEntryFinder() {
455         return blogsEntryFinder;
456     }
457 
458     public void setBlogsEntryFinder(BlogsEntryFinder blogsEntryFinder) {
459         this.blogsEntryFinder = blogsEntryFinder;
460     }
461 
462     public BookmarksEntryLocalService getBookmarksEntryLocalService() {
463         return bookmarksEntryLocalService;
464     }
465 
466     public void setBookmarksEntryLocalService(
467         BookmarksEntryLocalService bookmarksEntryLocalService) {
468         this.bookmarksEntryLocalService = bookmarksEntryLocalService;
469     }
470 
471     public BookmarksEntryService getBookmarksEntryService() {
472         return bookmarksEntryService;
473     }
474 
475     public void setBookmarksEntryService(
476         BookmarksEntryService bookmarksEntryService) {
477         this.bookmarksEntryService = bookmarksEntryService;
478     }
479 
480     public BookmarksEntryPersistence getBookmarksEntryPersistence() {
481         return bookmarksEntryPersistence;
482     }
483 
484     public void setBookmarksEntryPersistence(
485         BookmarksEntryPersistence bookmarksEntryPersistence) {
486         this.bookmarksEntryPersistence = bookmarksEntryPersistence;
487     }
488 
489     public BookmarksEntryFinder getBookmarksEntryFinder() {
490         return bookmarksEntryFinder;
491     }
492 
493     public void setBookmarksEntryFinder(
494         BookmarksEntryFinder bookmarksEntryFinder) {
495         this.bookmarksEntryFinder = bookmarksEntryFinder;
496     }
497 
498     public DLFileEntryLocalService getDLFileEntryLocalService() {
499         return dlFileEntryLocalService;
500     }
501 
502     public void setDLFileEntryLocalService(
503         DLFileEntryLocalService dlFileEntryLocalService) {
504         this.dlFileEntryLocalService = dlFileEntryLocalService;
505     }
506 
507     public DLFileEntryService getDLFileEntryService() {
508         return dlFileEntryService;
509     }
510 
511     public void setDLFileEntryService(DLFileEntryService dlFileEntryService) {
512         this.dlFileEntryService = dlFileEntryService;
513     }
514 
515     public DLFileEntryPersistence getDLFileEntryPersistence() {
516         return dlFileEntryPersistence;
517     }
518 
519     public void setDLFileEntryPersistence(
520         DLFileEntryPersistence dlFileEntryPersistence) {
521         this.dlFileEntryPersistence = dlFileEntryPersistence;
522     }
523 
524     public DLFileEntryFinder getDLFileEntryFinder() {
525         return dlFileEntryFinder;
526     }
527 
528     public void setDLFileEntryFinder(DLFileEntryFinder dlFileEntryFinder) {
529         this.dlFileEntryFinder = dlFileEntryFinder;
530     }
531 
532     public JournalArticleLocalService getJournalArticleLocalService() {
533         return journalArticleLocalService;
534     }
535 
536     public void setJournalArticleLocalService(
537         JournalArticleLocalService journalArticleLocalService) {
538         this.journalArticleLocalService = journalArticleLocalService;
539     }
540 
541     public JournalArticleService getJournalArticleService() {
542         return journalArticleService;
543     }
544 
545     public void setJournalArticleService(
546         JournalArticleService journalArticleService) {
547         this.journalArticleService = journalArticleService;
548     }
549 
550     public JournalArticlePersistence getJournalArticlePersistence() {
551         return journalArticlePersistence;
552     }
553 
554     public void setJournalArticlePersistence(
555         JournalArticlePersistence journalArticlePersistence) {
556         this.journalArticlePersistence = journalArticlePersistence;
557     }
558 
559     public JournalArticleFinder getJournalArticleFinder() {
560         return journalArticleFinder;
561     }
562 
563     public void setJournalArticleFinder(
564         JournalArticleFinder journalArticleFinder) {
565         this.journalArticleFinder = journalArticleFinder;
566     }
567 
568     public JournalArticleResourceLocalService getJournalArticleResourceLocalService() {
569         return journalArticleResourceLocalService;
570     }
571 
572     public void setJournalArticleResourceLocalService(
573         JournalArticleResourceLocalService journalArticleResourceLocalService) {
574         this.journalArticleResourceLocalService = journalArticleResourceLocalService;
575     }
576 
577     public JournalArticleResourcePersistence getJournalArticleResourcePersistence() {
578         return journalArticleResourcePersistence;
579     }
580 
581     public void setJournalArticleResourcePersistence(
582         JournalArticleResourcePersistence journalArticleResourcePersistence) {
583         this.journalArticleResourcePersistence = journalArticleResourcePersistence;
584     }
585 
586     public MBMessageLocalService getMBMessageLocalService() {
587         return mbMessageLocalService;
588     }
589 
590     public void setMBMessageLocalService(
591         MBMessageLocalService mbMessageLocalService) {
592         this.mbMessageLocalService = mbMessageLocalService;
593     }
594 
595     public MBMessageService getMBMessageService() {
596         return mbMessageService;
597     }
598 
599     public void setMBMessageService(MBMessageService mbMessageService) {
600         this.mbMessageService = mbMessageService;
601     }
602 
603     public MBMessagePersistence getMBMessagePersistence() {
604         return mbMessagePersistence;
605     }
606 
607     public void setMBMessagePersistence(
608         MBMessagePersistence mbMessagePersistence) {
609         this.mbMessagePersistence = mbMessagePersistence;
610     }
611 
612     public MBMessageFinder getMBMessageFinder() {
613         return mbMessageFinder;
614     }
615 
616     public void setMBMessageFinder(MBMessageFinder mbMessageFinder) {
617         this.mbMessageFinder = mbMessageFinder;
618     }
619 
620     public WikiPageLocalService getWikiPageLocalService() {
621         return wikiPageLocalService;
622     }
623 
624     public void setWikiPageLocalService(
625         WikiPageLocalService wikiPageLocalService) {
626         this.wikiPageLocalService = wikiPageLocalService;
627     }
628 
629     public WikiPageService getWikiPageService() {
630         return wikiPageService;
631     }
632 
633     public void setWikiPageService(WikiPageService wikiPageService) {
634         this.wikiPageService = wikiPageService;
635     }
636 
637     public WikiPagePersistence getWikiPagePersistence() {
638         return wikiPagePersistence;
639     }
640 
641     public void setWikiPagePersistence(WikiPagePersistence wikiPagePersistence) {
642         this.wikiPagePersistence = wikiPagePersistence;
643     }
644 
645     public WikiPageFinder getWikiPageFinder() {
646         return wikiPageFinder;
647     }
648 
649     public void setWikiPageFinder(WikiPageFinder wikiPageFinder) {
650         this.wikiPageFinder = wikiPageFinder;
651     }
652 
653     public WikiPageResourceLocalService getWikiPageResourceLocalService() {
654         return wikiPageResourceLocalService;
655     }
656 
657     public void setWikiPageResourceLocalService(
658         WikiPageResourceLocalService wikiPageResourceLocalService) {
659         this.wikiPageResourceLocalService = wikiPageResourceLocalService;
660     }
661 
662     public WikiPageResourcePersistence getWikiPageResourcePersistence() {
663         return wikiPageResourcePersistence;
664     }
665 
666     public void setWikiPageResourcePersistence(
667         WikiPageResourcePersistence wikiPageResourcePersistence) {
668         this.wikiPageResourcePersistence = wikiPageResourcePersistence;
669     }
670 
671     protected void runSQL(String sql) throws SystemException {
672         try {
673             PortalUtil.runSQL(sql);
674         }
675         catch (Exception e) {
676             throw new SystemException(e);
677         }
678     }
679 
680     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetLocalService.impl")
681     protected TagsAssetLocalService tagsAssetLocalService;
682     @BeanReference(name = "com.liferay.portlet.tags.service.TagsAssetService.impl")
683     protected TagsAssetService tagsAssetService;
684     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetPersistence.impl")
685     protected TagsAssetPersistence tagsAssetPersistence;
686     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsAssetFinder.impl")
687     protected TagsAssetFinder tagsAssetFinder;
688     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryLocalService.impl")
689     protected TagsEntryLocalService tagsEntryLocalService;
690     @BeanReference(name = "com.liferay.portlet.tags.service.TagsEntryService.impl")
691     protected TagsEntryService tagsEntryService;
692     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryPersistence.impl")
693     protected TagsEntryPersistence tagsEntryPersistence;
694     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsEntryFinder.impl")
695     protected TagsEntryFinder tagsEntryFinder;
696     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyLocalService.impl")
697     protected TagsPropertyLocalService tagsPropertyLocalService;
698     @BeanReference(name = "com.liferay.portlet.tags.service.TagsPropertyService.impl")
699     protected TagsPropertyService tagsPropertyService;
700     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyPersistence.impl")
701     protected TagsPropertyPersistence tagsPropertyPersistence;
702     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyFinder.impl")
703     protected TagsPropertyFinder tagsPropertyFinder;
704     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsPropertyKeyFinder.impl")
705     protected TagsPropertyKeyFinder tagsPropertyKeyFinder;
706     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceLocalService.impl")
707     protected TagsSourceLocalService tagsSourceLocalService;
708     @BeanReference(name = "com.liferay.portlet.tags.service.TagsSourceService.impl")
709     protected TagsSourceService tagsSourceService;
710     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsSourcePersistence.impl")
711     protected TagsSourcePersistence tagsSourcePersistence;
712     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyLocalService.impl")
713     protected TagsVocabularyLocalService tagsVocabularyLocalService;
714     @BeanReference(name = "com.liferay.portlet.tags.service.TagsVocabularyService.impl")
715     protected TagsVocabularyService tagsVocabularyService;
716     @BeanReference(name = "com.liferay.portlet.tags.service.persistence.TagsVocabularyPersistence.impl")
717     protected TagsVocabularyPersistence tagsVocabularyPersistence;
718     @BeanReference(name = "com.liferay.counter.service.CounterLocalService.impl")
719     protected CounterLocalService counterLocalService;
720     @BeanReference(name = "com.liferay.counter.service.CounterService.impl")
721     protected CounterService counterService;
722     @BeanReference(name = "com.liferay.portal.service.CompanyLocalService.impl")
723     protected CompanyLocalService companyLocalService;
724     @BeanReference(name = "com.liferay.portal.service.CompanyService.impl")
725     protected CompanyService companyService;
726     @BeanReference(name = "com.liferay.portal.service.persistence.CompanyPersistence.impl")
727     protected CompanyPersistence companyPersistence;
728     @BeanReference(name = "com.liferay.portal.service.GroupLocalService.impl")
729     protected GroupLocalService groupLocalService;
730     @BeanReference(name = "com.liferay.portal.service.GroupService.impl")
731     protected GroupService groupService;
732     @BeanReference(name = "com.liferay.portal.service.persistence.GroupPersistence.impl")
733     protected GroupPersistence groupPersistence;
734     @BeanReference(name = "com.liferay.portal.service.persistence.GroupFinder.impl")
735     protected GroupFinder groupFinder;
736     @BeanReference(name = "com.liferay.portal.service.UserLocalService.impl")
737     protected UserLocalService userLocalService;
738     @BeanReference(name = "com.liferay.portal.service.UserService.impl")
739     protected UserService userService;
740     @BeanReference(name = "com.liferay.portal.service.persistence.UserPersistence.impl")
741     protected UserPersistence userPersistence;
742     @BeanReference(name = "com.liferay.portal.service.persistence.UserFinder.impl")
743     protected UserFinder userFinder;
744     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryLocalService.impl")
745     protected BlogsEntryLocalService blogsEntryLocalService;
746     @BeanReference(name = "com.liferay.portlet.blogs.service.BlogsEntryService.impl")
747     protected BlogsEntryService blogsEntryService;
748     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryPersistence.impl")
749     protected BlogsEntryPersistence blogsEntryPersistence;
750     @BeanReference(name = "com.liferay.portlet.blogs.service.persistence.BlogsEntryFinder.impl")
751     protected BlogsEntryFinder blogsEntryFinder;
752     @BeanReference(name = "com.liferay.portlet.bookmarks.service.BookmarksEntryLocalService.impl")
753     protected BookmarksEntryLocalService bookmarksEntryLocalService;
754     @BeanReference(name = "com.liferay.portlet.bookmarks.service.BookmarksEntryService.impl")
755     protected BookmarksEntryService bookmarksEntryService;
756     @BeanReference(name = "com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryPersistence.impl")
757     protected BookmarksEntryPersistence bookmarksEntryPersistence;
758     @BeanReference(name = "com.liferay.portlet.bookmarks.service.persistence.BookmarksEntryFinder.impl")
759     protected BookmarksEntryFinder bookmarksEntryFinder;
760     @BeanReference(name = "com.liferay.portlet.documentlibrary.service.DLFileEntryLocalService.impl")
761     protected DLFileEntryLocalService dlFileEntryLocalService;
762     @BeanReference(name = "com.liferay.portlet.documentlibrary.service.DLFileEntryService.impl")
763     protected DLFileEntryService dlFileEntryService;
764     @BeanReference(name = "com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryPersistence.impl")
765     protected DLFileEntryPersistence dlFileEntryPersistence;
766     @BeanReference(name = "com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryFinder.impl")
767     protected DLFileEntryFinder dlFileEntryFinder;
768     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleLocalService.impl")
769     protected JournalArticleLocalService journalArticleLocalService;
770     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleService.impl")
771     protected JournalArticleService journalArticleService;
772     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticlePersistence.impl")
773     protected JournalArticlePersistence journalArticlePersistence;
774     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticleFinder.impl")
775     protected JournalArticleFinder journalArticleFinder;
776     @BeanReference(name = "com.liferay.portlet.journal.service.JournalArticleResourceLocalService.impl")
777     protected JournalArticleResourceLocalService journalArticleResourceLocalService;
778     @BeanReference(name = "com.liferay.portlet.journal.service.persistence.JournalArticleResourcePersistence.impl")
779     protected JournalArticleResourcePersistence journalArticleResourcePersistence;
780     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageLocalService.impl")
781     protected MBMessageLocalService mbMessageLocalService;
782     @BeanReference(name = "com.liferay.portlet.messageboards.service.MBMessageService.impl")
783     protected MBMessageService mbMessageService;
784     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessagePersistence.impl")
785     protected MBMessagePersistence mbMessagePersistence;
786     @BeanReference(name = "com.liferay.portlet.messageboards.service.persistence.MBMessageFinder.impl")
787     protected MBMessageFinder mbMessageFinder;
788     @BeanReference(name = "com.liferay.portlet.wiki.service.WikiPageLocalService.impl")
789     protected WikiPageLocalService wikiPageLocalService;
790     @BeanReference(name = "com.liferay.portlet.wiki.service.WikiPageService.impl")
791     protected WikiPageService wikiPageService;
792     @BeanReference(name = "com.liferay.portlet.wiki.service.persistence.WikiPagePersistence.impl")
793     protected WikiPagePersistence wikiPagePersistence;
794     @BeanReference(name = "com.liferay.portlet.wiki.service.persistence.WikiPageFinder.impl")
795     protected WikiPageFinder wikiPageFinder;
796     @BeanReference(name = "com.liferay.portlet.wiki.service.WikiPageResourceLocalService.impl")
797     protected WikiPageResourceLocalService wikiPageResourceLocalService;
798     @BeanReference(name = "com.liferay.portlet.wiki.service.persistence.WikiPageResourcePersistence.impl")
799     protected WikiPageResourcePersistence wikiPageResourcePersistence;
800 }