001
014
015 package com.liferay.portlet.polls.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.polls.service.PollsVoteServiceUtil;
025
026
056 public class PollsVoteServiceHttp {
057 public static com.liferay.portlet.polls.model.PollsVote addVote(
058 HttpPrincipal httpPrincipal, long questionId, long choiceId,
059 com.liferay.portal.service.ServiceContext serviceContext)
060 throws com.liferay.portal.kernel.exception.PortalException,
061 com.liferay.portal.kernel.exception.SystemException {
062 try {
063 MethodKey methodKey = new MethodKey(PollsVoteServiceUtil.class.getName(),
064 "addVote", _addVoteParameterTypes0);
065
066 MethodHandler methodHandler = new MethodHandler(methodKey,
067 questionId, choiceId, serviceContext);
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.polls.model.PollsVote)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(PollsVoteServiceHttp.class);
096 private static final Class<?>[] _addVoteParameterTypes0 = new Class[] {
097 long.class, long.class,
098 com.liferay.portal.service.ServiceContext.class
099 };
100 }