001
014
015 package com.liferay.portlet.announcements.service.http;
016
017 import com.liferay.portal.kernel.log.Log;
018 import com.liferay.portal.kernel.log.LogFactoryUtil;
019 import com.liferay.portal.kernel.util.MethodHandler;
020 import com.liferay.portal.kernel.util.MethodKey;
021 import com.liferay.portal.security.auth.HttpPrincipal;
022 import com.liferay.portal.service.http.TunnelUtil;
023
024 import com.liferay.portlet.announcements.service.AnnouncementsDeliveryServiceUtil;
025
026
054 public class AnnouncementsDeliveryServiceHttp {
055 public static com.liferay.portlet.announcements.model.AnnouncementsDelivery updateDelivery(
056 HttpPrincipal httpPrincipal, long userId, java.lang.String type,
057 boolean email, boolean sms, boolean website)
058 throws com.liferay.portal.kernel.exception.PortalException,
059 com.liferay.portal.kernel.exception.SystemException {
060 try {
061 MethodKey methodKey = new MethodKey(AnnouncementsDeliveryServiceUtil.class,
062 "updateDelivery", _updateDeliveryParameterTypes0);
063
064 MethodHandler methodHandler = new MethodHandler(methodKey, userId,
065 type, email, sms, website);
066
067 Object returnObj = null;
068
069 try {
070 returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler);
071 }
072 catch (Exception e) {
073 if (e instanceof com.liferay.portal.kernel.exception.PortalException) {
074 throw (com.liferay.portal.kernel.exception.PortalException)e;
075 }
076
077 if (e instanceof com.liferay.portal.kernel.exception.SystemException) {
078 throw (com.liferay.portal.kernel.exception.SystemException)e;
079 }
080
081 throw new com.liferay.portal.kernel.exception.SystemException(e);
082 }
083
084 return (com.liferay.portlet.announcements.model.AnnouncementsDelivery)returnObj;
085 }
086 catch (com.liferay.portal.kernel.exception.SystemException se) {
087 _log.error(se, se);
088
089 throw se;
090 }
091 }
092
093 private static Log _log = LogFactoryUtil.getLog(AnnouncementsDeliveryServiceHttp.class);
094 private static final Class<?>[] _updateDeliveryParameterTypes0 = new Class[] {
095 long.class, java.lang.String.class, boolean.class, boolean.class,
096 boolean.class
097 };
098 }