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.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  /**
30   * <a href="JournalArticleServiceSoap.java.html"><b><i>View Source</i></b></a>
31   *
32   * <p>
33   * ServiceBuilder generated this class. Modifications in this class will be
34   * overwritten the next time is generated.
35   * </p>
36   *
37   * <p>
38   * This class provides a SOAP utility for the
39   * <code>com.liferay.portlet.journal.service.JournalArticleServiceUtil</code> service
40   * utility. The static methods of this class calls the same methods of the
41   * service utility. However, the signatures are different because it is
42   * difficult for SOAP to support certain types.
43   * </p>
44   *
45   * <p>
46   * ServiceBuilder follows certain rules in translating the methods. For example,
47   * if the method in the service utility returns a <code>java.util.List</code>,
48   * that is translated to an array of
49   * <code>com.liferay.portlet.journal.model.JournalArticleSoap</code>. If the method in the
50   * service utility returns a <code>com.liferay.portlet.journal.model.JournalArticle</code>,
51   * that is translated to a <code>com.liferay.portlet.journal.model.JournalArticleSoap</code>.
52   * Methods that SOAP cannot safely wire are skipped.
53   * </p>
54   *
55   * <p>
56   * The benefits of using the SOAP utility is that it is cross platform
57   * compatible. SOAP allows different languages like Java, .NET, C++, PHP, and
58   * even Perl, to call the generated services. One drawback of SOAP is that it is
59   * slow because it needs to serialize all calls into a text format (XML).
60   * </p>
61   *
62   * <p>
63   * You can see a list of services at
64   * http://localhost:8080/tunnel-web/secure/axis. Set the property
65   * <code>tunnel.servlet.hosts.allowed</code> in portal.properties to configure
66   * security.
67   * </p>
68   *
69   * <p>
70   * The SOAP utility is only generated for remote services.
71   * </p>
72   *
73   * @author Brian Wing Shun Chan
74   *
75   * @see com.liferay.portlet.journal.model.JournalArticleSoap
76   * @see com.liferay.portlet.journal.service.JournalArticleServiceUtil
77   * @see com.liferay.portlet.journal.service.http.JournalArticleServiceHttp
78   *
79   */
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 }