1
14
15 package com.liferay.portlet.tags.service;
16
17
33 public class TagsSourceLocalServiceWrapper implements TagsSourceLocalService {
34 public TagsSourceLocalServiceWrapper(
35 TagsSourceLocalService tagsSourceLocalService) {
36 _tagsSourceLocalService = tagsSourceLocalService;
37 }
38
39 public com.liferay.portlet.tags.model.TagsSource addTagsSource(
40 com.liferay.portlet.tags.model.TagsSource tagsSource)
41 throws com.liferay.portal.SystemException {
42 return _tagsSourceLocalService.addTagsSource(tagsSource);
43 }
44
45 public com.liferay.portlet.tags.model.TagsSource createTagsSource(
46 long sourceId) {
47 return _tagsSourceLocalService.createTagsSource(sourceId);
48 }
49
50 public void deleteTagsSource(long sourceId)
51 throws com.liferay.portal.PortalException,
52 com.liferay.portal.SystemException {
53 _tagsSourceLocalService.deleteTagsSource(sourceId);
54 }
55
56 public void deleteTagsSource(
57 com.liferay.portlet.tags.model.TagsSource tagsSource)
58 throws com.liferay.portal.SystemException {
59 _tagsSourceLocalService.deleteTagsSource(tagsSource);
60 }
61
62 @SuppressWarnings("rawtypes")
63 public java.util.List dynamicQuery(
64 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
65 throws com.liferay.portal.SystemException {
66 return _tagsSourceLocalService.dynamicQuery(dynamicQuery);
67 }
68
69 @SuppressWarnings("rawtypes")
70 public java.util.List dynamicQuery(
71 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
72 int end) throws com.liferay.portal.SystemException {
73 return _tagsSourceLocalService.dynamicQuery(dynamicQuery, start, end);
74 }
75
76 @SuppressWarnings("rawtypes")
77 public java.util.List dynamicQuery(
78 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
79 int end,
80 com.liferay.portal.kernel.util.OrderByComparator orderByComparator)
81 throws com.liferay.portal.SystemException {
82 return _tagsSourceLocalService.dynamicQuery(dynamicQuery, start, end,
83 orderByComparator);
84 }
85
86 public int dynamicQueryCount(
87 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
88 throws com.liferay.portal.SystemException {
89 return _tagsSourceLocalService.dynamicQueryCount(dynamicQuery);
90 }
91
92 public com.liferay.portlet.tags.model.TagsSource getTagsSource(
93 long sourceId)
94 throws com.liferay.portal.PortalException,
95 com.liferay.portal.SystemException {
96 return _tagsSourceLocalService.getTagsSource(sourceId);
97 }
98
99 public java.util.List<com.liferay.portlet.tags.model.TagsSource> getTagsSources(
100 int start, int end) throws com.liferay.portal.SystemException {
101 return _tagsSourceLocalService.getTagsSources(start, end);
102 }
103
104 public int getTagsSourcesCount() throws com.liferay.portal.SystemException {
105 return _tagsSourceLocalService.getTagsSourcesCount();
106 }
107
108 public com.liferay.portlet.tags.model.TagsSource updateTagsSource(
109 com.liferay.portlet.tags.model.TagsSource tagsSource)
110 throws com.liferay.portal.SystemException {
111 return _tagsSourceLocalService.updateTagsSource(tagsSource);
112 }
113
114 public com.liferay.portlet.tags.model.TagsSource updateTagsSource(
115 com.liferay.portlet.tags.model.TagsSource tagsSource, boolean merge)
116 throws com.liferay.portal.SystemException {
117 return _tagsSourceLocalService.updateTagsSource(tagsSource, merge);
118 }
119
120 public TagsSourceLocalService getWrappedTagsSourceLocalService() {
121 return _tagsSourceLocalService;
122 }
123
124 private TagsSourceLocalService _tagsSourceLocalService;
125 }