001: /**
002: * Copyright (c) 2000-2008 Liferay, Inc. All rights reserved.
003: *
004: * Permission is hereby granted, free of charge, to any person obtaining a copy
005: * of this software and associated documentation files (the "Software"), to deal
006: * in the Software without restriction, including without limitation the rights
007: * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
008: * copies of the Software, and to permit persons to whom the Software is
009: * furnished to do so, subject to the following conditions:
010: *
011: * The above copyright notice and this permission notice shall be included in
012: * all copies or substantial portions of the Software.
013: *
014: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
015: * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
016: * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
017: * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
018: * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
019: * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
020: * SOFTWARE.
021: */package com.liferay.portlet.journal.service.http;
022:
023: import com.liferay.portal.kernel.log.Log;
024: import com.liferay.portal.kernel.log.LogFactoryUtil;
025:
026: import com.liferay.portlet.journal.service.JournalArticleServiceUtil;
027:
028: import java.rmi.RemoteException;
029:
030: /**
031: * <a href="JournalArticleServiceSoap.java.html"><b><i>View Source</i></b></a>
032: *
033: * <p>
034: * ServiceBuilder generated this class. Modifications in this class will be
035: * overwritten the next time is generated.
036: * </p>
037: *
038: * <p>
039: * This class provides a SOAP utility for the
040: * <code>com.liferay.portlet.journal.service.JournalArticleServiceUtil</code> service
041: * utility. The static methods of this class calls the same methods of the
042: * service utility. However, the signatures are different because it is
043: * difficult for SOAP to support certain types.
044: * </p>
045: *
046: * <p>
047: * ServiceBuilder follows certain rules in translating the methods. For example,
048: * if the method in the service utility returns a <code>java.util.List</code>,
049: * that is translated to an array of
050: * <code>com.liferay.portlet.journal.model.JournalArticleSoap</code>. If the method in the
051: * service utility returns a <code>com.liferay.portlet.journal.model.JournalArticle</code>,
052: * that is translated to a <code>com.liferay.portlet.journal.model.JournalArticleSoap</code>.
053: * Methods that SOAP cannot safely wire are skipped.
054: * </p>
055: *
056: * <p>
057: * The benefits of using the SOAP utility is that it is cross platform
058: * compatible. SOAP allows different languages like Java, .NET, C++, PHP, and
059: * even Perl, to call the generated services. One drawback of SOAP is that it is
060: * slow because it needs to serialize all calls into a text format (XML).
061: * </p>
062: *
063: * <p>
064: * You can see a list of services at
065: * http://localhost:8080/tunnel-web/secure/axis. Set the property
066: * <code>tunnel.servlet.hosts.allowed</code> in portal.properties to configure
067: * security.
068: * </p>
069: *
070: * <p>
071: * The SOAP utility is only generated for remote services.
072: * </p>
073: *
074: * @author Brian Wing Shun Chan
075: *
076: * @see com.liferay.portlet.journal.service.JournalArticleServiceUtil
077: * @see com.liferay.portlet.journal.service.http.JournalArticleServiceHttp
078: * @see com.liferay.portlet.journal.service.model.JournalArticleSoap
079: *
080: */
081: public class JournalArticleServiceSoap {
082: public static com.liferay.portlet.journal.model.JournalArticleSoap getArticle(
083: long groupId, java.lang.String articleId, double version)
084: throws RemoteException {
085: try {
086: com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil
087: .getArticle(groupId, articleId, version);
088:
089: return com.liferay.portlet.journal.model.JournalArticleSoap
090: .toSoapModel(returnValue);
091: } catch (Exception e) {
092: _log.error(e, e);
093:
094: throw new RemoteException(e.getMessage());
095: }
096: }
097:
098: public static void removeArticleLocale(long companyId,
099: java.lang.String languageId) throws RemoteException {
100: try {
101: JournalArticleServiceUtil.removeArticleLocale(companyId,
102: languageId);
103: } catch (Exception e) {
104: _log.error(e, e);
105:
106: throw new RemoteException(e.getMessage());
107: }
108: }
109:
110: public static com.liferay.portlet.journal.model.JournalArticleSoap removeArticleLocale(
111: long groupId, java.lang.String articleId, double version,
112: java.lang.String languageId) throws RemoteException {
113: try {
114: com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil
115: .removeArticleLocale(groupId, articleId, version,
116: languageId);
117:
118: return com.liferay.portlet.journal.model.JournalArticleSoap
119: .toSoapModel(returnValue);
120: } catch (Exception e) {
121: _log.error(e, e);
122:
123: throw new RemoteException(e.getMessage());
124: }
125: }
126:
127: public static com.liferay.portlet.journal.model.JournalArticleSoap updateContent(
128: long groupId, java.lang.String articleId, double version,
129: java.lang.String content) throws RemoteException {
130: try {
131: com.liferay.portlet.journal.model.JournalArticle returnValue = JournalArticleServiceUtil
132: .updateContent(groupId, articleId, version, content);
133:
134: return com.liferay.portlet.journal.model.JournalArticleSoap
135: .toSoapModel(returnValue);
136: } catch (Exception e) {
137: _log.error(e, e);
138:
139: throw new RemoteException(e.getMessage());
140: }
141: }
142:
143: private static Log _log = LogFactoryUtil
144: .getLog(JournalArticleServiceSoap.class);
145: }
|