1
22
23 package com.liferay.portlet.journal.service;
24
25
26
42 public class JournalContentSearchLocalServiceWrapper
43 implements JournalContentSearchLocalService {
44 public JournalContentSearchLocalServiceWrapper(
45 JournalContentSearchLocalService journalContentSearchLocalService) {
46 _journalContentSearchLocalService = journalContentSearchLocalService;
47 }
48
49 public com.liferay.portlet.journal.model.JournalContentSearch addJournalContentSearch(
50 com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch)
51 throws com.liferay.portal.SystemException {
52 return _journalContentSearchLocalService.addJournalContentSearch(journalContentSearch);
53 }
54
55 public com.liferay.portlet.journal.model.JournalContentSearch createJournalContentSearch(
56 long contentSearchId) {
57 return _journalContentSearchLocalService.createJournalContentSearch(contentSearchId);
58 }
59
60 public void deleteJournalContentSearch(long contentSearchId)
61 throws com.liferay.portal.PortalException,
62 com.liferay.portal.SystemException {
63 _journalContentSearchLocalService.deleteJournalContentSearch(contentSearchId);
64 }
65
66 public void deleteJournalContentSearch(
67 com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch)
68 throws com.liferay.portal.SystemException {
69 _journalContentSearchLocalService.deleteJournalContentSearch(journalContentSearch);
70 }
71
72 public java.util.List<Object> dynamicQuery(
73 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
74 throws com.liferay.portal.SystemException {
75 return _journalContentSearchLocalService.dynamicQuery(dynamicQuery);
76 }
77
78 public java.util.List<Object> dynamicQuery(
79 com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start,
80 int end) throws com.liferay.portal.SystemException {
81 return _journalContentSearchLocalService.dynamicQuery(dynamicQuery,
82 start, end);
83 }
84
85 public com.liferay.portlet.journal.model.JournalContentSearch getJournalContentSearch(
86 long contentSearchId)
87 throws com.liferay.portal.PortalException,
88 com.liferay.portal.SystemException {
89 return _journalContentSearchLocalService.getJournalContentSearch(contentSearchId);
90 }
91
92 public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> getJournalContentSearchs(
93 int start, int end) throws com.liferay.portal.SystemException {
94 return _journalContentSearchLocalService.getJournalContentSearchs(start,
95 end);
96 }
97
98 public int getJournalContentSearchsCount()
99 throws com.liferay.portal.SystemException {
100 return _journalContentSearchLocalService.getJournalContentSearchsCount();
101 }
102
103 public com.liferay.portlet.journal.model.JournalContentSearch updateJournalContentSearch(
104 com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch)
105 throws com.liferay.portal.SystemException {
106 return _journalContentSearchLocalService.updateJournalContentSearch(journalContentSearch);
107 }
108
109 public com.liferay.portlet.journal.model.JournalContentSearch updateJournalContentSearch(
110 com.liferay.portlet.journal.model.JournalContentSearch journalContentSearch,
111 boolean merge) throws com.liferay.portal.SystemException {
112 return _journalContentSearchLocalService.updateJournalContentSearch(journalContentSearch,
113 merge);
114 }
115
116 public void checkContentSearches(long companyId)
117 throws com.liferay.portal.PortalException,
118 com.liferay.portal.SystemException {
119 _journalContentSearchLocalService.checkContentSearches(companyId);
120 }
121
122 public void deleteArticleContentSearch(long groupId, boolean privateLayout,
123 long layoutId, java.lang.String portletId, java.lang.String articleId)
124 throws com.liferay.portal.PortalException,
125 com.liferay.portal.SystemException {
126 _journalContentSearchLocalService.deleteArticleContentSearch(groupId,
127 privateLayout, layoutId, portletId, articleId);
128 }
129
130 public void deleteArticleContentSearches(long groupId,
131 java.lang.String articleId) throws com.liferay.portal.SystemException {
132 _journalContentSearchLocalService.deleteArticleContentSearches(groupId,
133 articleId);
134 }
135
136 public void deleteLayoutContentSearches(long groupId,
137 boolean privateLayout, long layoutId)
138 throws com.liferay.portal.SystemException {
139 _journalContentSearchLocalService.deleteLayoutContentSearches(groupId,
140 privateLayout, layoutId);
141 }
142
143 public void deleteOwnerContentSearches(long groupId, boolean privateLayout)
144 throws com.liferay.portal.SystemException {
145 _journalContentSearchLocalService.deleteOwnerContentSearches(groupId,
146 privateLayout);
147 }
148
149 public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> getArticleContentSearches()
150 throws com.liferay.portal.SystemException {
151 return _journalContentSearchLocalService.getArticleContentSearches();
152 }
153
154 public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> getArticleContentSearches(
155 long groupId, java.lang.String articleId)
156 throws com.liferay.portal.SystemException {
157 return _journalContentSearchLocalService.getArticleContentSearches(groupId,
158 articleId);
159 }
160
161 public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> getArticleContentSearches(
162 java.lang.String articleId) throws com.liferay.portal.SystemException {
163 return _journalContentSearchLocalService.getArticleContentSearches(articleId);
164 }
165
166 public java.util.List<Long> getLayoutIds(long groupId,
167 boolean privateLayout, java.lang.String articleId)
168 throws com.liferay.portal.SystemException {
169 return _journalContentSearchLocalService.getLayoutIds(groupId,
170 privateLayout, articleId);
171 }
172
173 public int getLayoutIdsCount(long groupId, boolean privateLayout,
174 java.lang.String articleId) throws com.liferay.portal.SystemException {
175 return _journalContentSearchLocalService.getLayoutIdsCount(groupId,
176 privateLayout, articleId);
177 }
178
179 public int getLayoutIdsCount(java.lang.String articleId)
180 throws com.liferay.portal.SystemException {
181 return _journalContentSearchLocalService.getLayoutIdsCount(articleId);
182 }
183
184 public com.liferay.portlet.journal.model.JournalContentSearch updateContentSearch(
185 long groupId, boolean privateLayout, long layoutId,
186 java.lang.String portletId, java.lang.String articleId)
187 throws com.liferay.portal.PortalException,
188 com.liferay.portal.SystemException {
189 return _journalContentSearchLocalService.updateContentSearch(groupId,
190 privateLayout, layoutId, portletId, articleId);
191 }
192
193 public com.liferay.portlet.journal.model.JournalContentSearch updateContentSearch(
194 long groupId, boolean privateLayout, long layoutId,
195 java.lang.String portletId, java.lang.String articleId, boolean purge)
196 throws com.liferay.portal.PortalException,
197 com.liferay.portal.SystemException {
198 return _journalContentSearchLocalService.updateContentSearch(groupId,
199 privateLayout, layoutId, portletId, articleId, purge);
200 }
201
202 public java.util.List<com.liferay.portlet.journal.model.JournalContentSearch> updateContentSearch(
203 long groupId, boolean privateLayout, long layoutId,
204 java.lang.String portletId, java.lang.String[] articleIds)
205 throws com.liferay.portal.PortalException,
206 com.liferay.portal.SystemException {
207 return _journalContentSearchLocalService.updateContentSearch(groupId,
208 privateLayout, layoutId, portletId, articleIds);
209 }
210
211 public JournalContentSearchLocalService getWrappedJournalContentSearchLocalService() {
212 return _journalContentSearchLocalService;
213 }
214
215 private JournalContentSearchLocalService _journalContentSearchLocalService;
216 }