| AnnouncementsDeliveryServiceHttp.java |
1 /**
2 * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved.
3 *
4 *
5 *
6 *
7 * The contents of this file are subject to the terms of the Liferay Enterprise
8 * Subscription License ("License"). You may not use this file except in
9 * compliance with the License. You can obtain a copy of the License by
10 * contacting Liferay, Inc. See the License for the specific language governing
11 * permissions and limitations under the License, including but not limited to
12 * distribution rights of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 */
22
23 package com.liferay.portlet.announcements.service.http;
24
25 import com.liferay.portal.kernel.log.Log;
26 import com.liferay.portal.kernel.log.LogFactoryUtil;
27 import com.liferay.portal.kernel.util.BooleanWrapper;
28 import com.liferay.portal.kernel.util.LongWrapper;
29 import com.liferay.portal.kernel.util.MethodWrapper;
30 import com.liferay.portal.kernel.util.NullWrapper;
31 import com.liferay.portal.security.auth.HttpPrincipal;
32 import com.liferay.portal.service.http.TunnelUtil;
33
34 import com.liferay.portlet.announcements.service.AnnouncementsDeliveryServiceUtil;
35
36 /**
37 * <a href="AnnouncementsDeliveryServiceHttp.java.html"><b><i>View Source</i></b></a>
38 *
39 * <p>
40 * ServiceBuilder generated this class. Modifications in this class will be
41 * overwritten the next time is generated.
42 * </p>
43 *
44 * <p>
45 * This class provides a HTTP utility for the
46 * {@link com.liferay.portlet.announcements.service.AnnouncementsDeliveryServiceUtil} service utility. The
47 * static methods of this class calls the same methods of the service utility.
48 * However, the signatures are different because it requires an additional
49 * {@link com.liferay.portal.security.auth.HttpPrincipal} parameter.
50 * </p>
51 *
52 * <p>
53 * The benefits of using the HTTP utility is that it is fast and allows for
54 * tunneling without the cost of serializing to text. The drawback is that it
55 * only works with Java.
56 * </p>
57 *
58 * <p>
59 * Set the property <b>tunnel.servlet.hosts.allowed</b> in portal.properties to
60 * configure security.
61 * </p>
62 *
63 * <p>
64 * The HTTP utility is only generated for remote services.
65 * </p>
66 *
67 * @author Brian Wing Shun Chan
68 * @see AnnouncementsDeliveryServiceSoap
69 * @see com.liferay.portal.security.auth.HttpPrincipal
70 * @see com.liferay.portlet.announcements.service.AnnouncementsDeliveryServiceUtil
71 * @generated
72 */
73 public class AnnouncementsDeliveryServiceHttp {
74 public static com.liferay.portlet.announcements.model.AnnouncementsDelivery updateDelivery(
75 HttpPrincipal httpPrincipal, long userId, java.lang.String type,
76 boolean email, boolean sms, boolean website)
77 throws com.liferay.portal.PortalException,
78 com.liferay.portal.SystemException {
79 try {
80 Object paramObj0 = new LongWrapper(userId);
81
82 Object paramObj1 = type;
83
84 if (type == null) {
85 paramObj1 = new NullWrapper("java.lang.String");
86 }
87
88 Object paramObj2 = new BooleanWrapper(email);
89
90 Object paramObj3 = new BooleanWrapper(sms);
91
92 Object paramObj4 = new BooleanWrapper(website);
93
94 MethodWrapper methodWrapper = new MethodWrapper(AnnouncementsDeliveryServiceUtil.class.getName(),
95 "updateDelivery",
96 new Object[] {
97 paramObj0, paramObj1, paramObj2, paramObj3, paramObj4
98 });
99
100 Object returnObj = null;
101
102 try {
103 returnObj = TunnelUtil.invoke(httpPrincipal, methodWrapper);
104 }
105 catch (Exception e) {
106 if (e instanceof com.liferay.portal.PortalException) {
107 throw (com.liferay.portal.PortalException)e;
108 }
109
110 if (e instanceof com.liferay.portal.SystemException) {
111 throw (com.liferay.portal.SystemException)e;
112 }
113
114 throw new com.liferay.portal.SystemException(e);
115 }
116
117 return (com.liferay.portlet.announcements.model.AnnouncementsDelivery)returnObj;
118 }
119 catch (com.liferay.portal.SystemException se) {
120 _log.error(se, se);
121
122 throw se;
123 }
124 }
125
126 private static Log _log = LogFactoryUtil.getLog(AnnouncementsDeliveryServiceHttp.class);
127 }