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