001
014
015 package com.liferay.portal.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.PortletServiceUtil;
023
024
054 public class PortletServiceHttp {
055 public static com.liferay.portal.kernel.json.JSONArray getWARPortlets(
056 HttpPrincipal httpPrincipal)
057 throws com.liferay.portal.kernel.exception.SystemException {
058 try {
059 MethodKey methodKey = new MethodKey(PortletServiceUtil.class.getName(),
060 "getWARPortlets");
061
062 MethodHandler methodHandler = new MethodHandler(methodKey);
063
064 Object returnObj = null;
065
066 try {
067 returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler);
068 }
069 catch (Exception e) {
070 throw new com.liferay.portal.kernel.exception.SystemException(e);
071 }
072
073 return (com.liferay.portal.kernel.json.JSONArray)returnObj;
074 }
075 catch (com.liferay.portal.kernel.exception.SystemException se) {
076 _log.error(se, se);
077
078 throw se;
079 }
080 }
081
082 public static com.liferay.portal.model.Portlet updatePortlet(
083 HttpPrincipal httpPrincipal, long companyId,
084 java.lang.String portletId, java.lang.String roles, boolean active)
085 throws com.liferay.portal.kernel.exception.PortalException,
086 com.liferay.portal.kernel.exception.SystemException {
087 try {
088 MethodKey methodKey = new MethodKey(PortletServiceUtil.class.getName(),
089 "updatePortlet", long.class, java.lang.String.class,
090 java.lang.String.class, boolean.class);
091
092 MethodHandler methodHandler = new MethodHandler(methodKey,
093 companyId, portletId, roles, active);
094
095 Object returnObj = null;
096
097 try {
098 returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler);
099 }
100 catch (Exception e) {
101 if (e instanceof com.liferay.portal.kernel.exception.PortalException) {
102 throw (com.liferay.portal.kernel.exception.PortalException)e;
103 }
104
105 if (e instanceof com.liferay.portal.kernel.exception.SystemException) {
106 throw (com.liferay.portal.kernel.exception.SystemException)e;
107 }
108
109 throw new com.liferay.portal.kernel.exception.SystemException(e);
110 }
111
112 return (com.liferay.portal.model.Portlet)returnObj;
113 }
114 catch (com.liferay.portal.kernel.exception.SystemException se) {
115 _log.error(se, se);
116
117 throw se;
118 }
119 }
120
121 private static Log _log = LogFactoryUtil.getLog(PortletServiceHttp.class);
122 }