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
056 public class AnnouncementsDeliveryServiceHttp {
057 public static com.liferay.portlet.announcements.model.AnnouncementsDelivery updateDelivery(
058 HttpPrincipal httpPrincipal, long userId, java.lang.String type,
059 boolean email, boolean sms, boolean website)
060 throws com.liferay.portal.kernel.exception.PortalException,
061 com.liferay.portal.kernel.exception.SystemException {
062 try {
063 MethodKey methodKey = new MethodKey(AnnouncementsDeliveryServiceUtil.class.getName(),
064 "updateDelivery", _updateDeliveryParameterTypes0);
065
066 MethodHandler methodHandler = new MethodHandler(methodKey, userId,
067 type, email, sms, website);
068
069 Object returnObj = null;
070
071 try {
072 returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler);
073 }
074 catch (Exception e) {
075 if (e instanceof com.liferay.portal.kernel.exception.PortalException) {
076 throw (com.liferay.portal.kernel.exception.PortalException)e;
077 }
078
079 if (e instanceof com.liferay.portal.kernel.exception.SystemException) {
080 throw (com.liferay.portal.kernel.exception.SystemException)e;
081 }
082
083 throw new com.liferay.portal.kernel.exception.SystemException(e);
084 }
085
086 return (com.liferay.portlet.announcements.model.AnnouncementsDelivery)returnObj;
087 }
088 catch (com.liferay.portal.kernel.exception.SystemException se) {
089 _log.error(se, se);
090
091 throw se;
092 }
093 }
094
095 private static Log _log = LogFactoryUtil.getLog(AnnouncementsDeliveryServiceHttp.class);
096 private static final Class<?>[] _updateDeliveryParameterTypes0 = new Class[] {
097 long.class, java.lang.String.class, boolean.class, boolean.class,
098 boolean.class
099 };
100 }