1
19
20 package com.liferay.portlet.journal.service.http;
21
22 import com.liferay.portal.kernel.log.Log;
23 import com.liferay.portal.kernel.log.LogFactoryUtil;
24
25 import com.liferay.portlet.journal.service.JournalArticleServiceUtil;
26
27 import java.rmi.RemoteException;
28
29
80 public class JournalArticleServiceSoap {
81 public static com.liferay.portlet.journal.model.JournalArticleSoap addArticle(
82 long groupId, java.lang.String articleId, boolean autoArticleId,
83 java.lang.String title, java.lang.String description,
84 java.lang.String content, java.lang.String type,
85 java.lang.String structureId, java.lang.String templateId,
86 int displayDateMonth, int displayDateDay, int displayDateYear,
87 int displayDateHour, int displayDateMinute, int expirationDateMonth,
88 int expirationDateDay, int expirationDateYear, int expirationDateHour,
89 int expirationDateMinute, boolean neverExpire, int reviewDateMonth,
90 int reviewDateDay, int reviewDateYear, int reviewDateHour,
91 int reviewDateMinute, boolean neverReview, boolean indexable,
92 java.lang.String articleURL,
93 com.liferay.portal.service.ServiceContext serviceContext)
94 throws RemoteException {
95 try {
96 com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil.addArticle(groupId,
97 articleId, autoArticleId, title, description, content,
98 type, structureId, templateId, displayDateMonth,
99 displayDateDay, displayDateYear, displayDateHour,
100 displayDateMinute, expirationDateMonth, expirationDateDay,
101 expirationDateYear, expirationDateHour,
102 expirationDateMinute, neverExpire, reviewDateMonth,
103 reviewDateDay, reviewDateYear, reviewDateHour,
104 reviewDateMinute, neverReview, indexable, articleURL,
105 serviceContext);
106
107 return com.liferay.portlet.journal.model.JournalArticleSoap.toSoapModel(returnValue);
108 }
109 catch (Exception e) {
110 _log.error(e, e);
111
112 throw new RemoteException(e.getMessage());
113 }
114 }
115
116 public static com.liferay.portlet.journal.model.JournalArticleSoap approveArticle(
117 long groupId, java.lang.String articleId, double version,
118 java.lang.String articleURL,
119 com.liferay.portal.service.ServiceContext serviceContext)
120 throws RemoteException {
121 try {
122 com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil.approveArticle(groupId,
123 articleId, version, articleURL, serviceContext);
124
125 return com.liferay.portlet.journal.model.JournalArticleSoap.toSoapModel(returnValue);
126 }
127 catch (Exception e) {
128 _log.error(e, e);
129
130 throw new RemoteException(e.getMessage());
131 }
132 }
133
134 public static com.liferay.portlet.journal.model.JournalArticleSoap copyArticle(
135 long groupId, java.lang.String oldArticleId,
136 java.lang.String newArticleId, boolean autoArticleId, double version)
137 throws RemoteException {
138 try {
139 com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil.copyArticle(groupId,
140 oldArticleId, newArticleId, autoArticleId, version);
141
142 return com.liferay.portlet.journal.model.JournalArticleSoap.toSoapModel(returnValue);
143 }
144 catch (Exception e) {
145 _log.error(e, e);
146
147 throw new RemoteException(e.getMessage());
148 }
149 }
150
151 public static com.liferay.portlet.journal.model.JournalArticleSoap getArticle(
152 long groupId, java.lang.String articleId) throws RemoteException {
153 try {
154 com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil.getArticle(groupId,
155 articleId);
156
157 return com.liferay.portlet.journal.model.JournalArticleSoap.toSoapModel(returnValue);
158 }
159 catch (Exception e) {
160 _log.error(e, e);
161
162 throw new RemoteException(e.getMessage());
163 }
164 }
165
166 public static com.liferay.portlet.journal.model.JournalArticleSoap getArticle(
167 long groupId, java.lang.String articleId, double version)
168 throws RemoteException {
169 try {
170 com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil.getArticle(groupId,
171 articleId, version);
172
173 return com.liferay.portlet.journal.model.JournalArticleSoap.toSoapModel(returnValue);
174 }
175 catch (Exception e) {
176 _log.error(e, e);
177
178 throw new RemoteException(e.getMessage());
179 }
180 }
181
182 public static com.liferay.portlet.journal.model.JournalArticleSoap getArticleByUrlTitle(
183 long groupId, java.lang.String urlTitle) throws RemoteException {
184 try {
185 com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil.getArticleByUrlTitle(groupId,
186 urlTitle);
187
188 return com.liferay.portlet.journal.model.JournalArticleSoap.toSoapModel(returnValue);
189 }
190 catch (Exception e) {
191 _log.error(e, e);
192
193 throw new RemoteException(e.getMessage());
194 }
195 }
196
197 public static void deleteArticle(long groupId, java.lang.String articleId,
198 double version, java.lang.String articleURL,
199 com.liferay.portal.service.ServiceContext serviceContext)
200 throws RemoteException {
201 try {
202 JournalArticleServiceUtil.deleteArticle(groupId, articleId,
203 version, articleURL, serviceContext);
204 }
205 catch (Exception e) {
206 _log.error(e, e);
207
208 throw new RemoteException(e.getMessage());
209 }
210 }
211
212 public static void expireArticle(long groupId, java.lang.String articleId,
213 double version, java.lang.String articleURL,
214 com.liferay.portal.service.ServiceContext serviceContext)
215 throws RemoteException {
216 try {
217 JournalArticleServiceUtil.expireArticle(groupId, articleId,
218 version, articleURL, serviceContext);
219 }
220 catch (Exception e) {
221 _log.error(e, e);
222
223 throw new RemoteException(e.getMessage());
224 }
225 }
226
227 public static void removeArticleLocale(long companyId,
228 java.lang.String languageId) throws RemoteException {
229 try {
230 JournalArticleServiceUtil.removeArticleLocale(companyId, languageId);
231 }
232 catch (Exception e) {
233 _log.error(e, e);
234
235 throw new RemoteException(e.getMessage());
236 }
237 }
238
239 public static com.liferay.portlet.journal.model.JournalArticleSoap removeArticleLocale(
240 long groupId, java.lang.String articleId, double version,
241 java.lang.String languageId) throws RemoteException {
242 try {
243 com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil.removeArticleLocale(groupId,
244 articleId, version, languageId);
245
246 return com.liferay.portlet.journal.model.JournalArticleSoap.toSoapModel(returnValue);
247 }
248 catch (Exception e) {
249 _log.error(e, e);
250
251 throw new RemoteException(e.getMessage());
252 }
253 }
254
255 public static com.liferay.portlet.journal.model.JournalArticleSoap updateArticle(
256 long groupId, java.lang.String articleId, double version,
257 boolean incrementVersion, java.lang.String content)
258 throws RemoteException {
259 try {
260 com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil.updateArticle(groupId,
261 articleId, version, incrementVersion, content);
262
263 return com.liferay.portlet.journal.model.JournalArticleSoap.toSoapModel(returnValue);
264 }
265 catch (Exception e) {
266 _log.error(e, e);
267
268 throw new RemoteException(e.getMessage());
269 }
270 }
271
272 public static com.liferay.portlet.journal.model.JournalArticleSoap updateContent(
273 long groupId, java.lang.String articleId, double version,
274 java.lang.String content) throws RemoteException {
275 try {
276 com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil.updateContent(groupId,
277 articleId, version, content);
278
279 return com.liferay.portlet.journal.model.JournalArticleSoap.toSoapModel(returnValue);
280 }
281 catch (Exception e) {
282 _log.error(e, e);
283
284 throw new RemoteException(e.getMessage());
285 }
286 }
287
288 private static Log _log = LogFactoryUtil.getLog(JournalArticleServiceSoap.class);
289 }