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.LongWrapper;
020 import com.liferay.portal.kernel.util.MethodWrapper;
021 import com.liferay.portal.security.auth.HttpPrincipal;
022 import com.liferay.portal.service.ThemeServiceUtil;
023
024
054 public class ThemeServiceHttp {
055 public static java.util.List<com.liferay.portal.model.Theme> getThemes(
056 HttpPrincipal httpPrincipal, long companyId)
057 throws com.liferay.portal.kernel.exception.SystemException {
058 try {
059 Object paramObj0 = new LongWrapper(companyId);
060
061 MethodWrapper methodWrapper = new MethodWrapper(ThemeServiceUtil.class.getName(),
062 "getThemes", new Object[] { paramObj0 });
063
064 Object returnObj = null;
065
066 try {
067 returnObj = TunnelUtil.invoke(httpPrincipal, methodWrapper);
068 }
069 catch (Exception e) {
070 throw new com.liferay.portal.kernel.exception.SystemException(e);
071 }
072
073 return (java.util.List<com.liferay.portal.model.Theme>)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.kernel.json.JSONArray getWARThemes(
083 HttpPrincipal httpPrincipal)
084 throws com.liferay.portal.kernel.exception.SystemException {
085 try {
086 MethodWrapper methodWrapper = new MethodWrapper(ThemeServiceUtil.class.getName(),
087 "getWARThemes", new Object[0]);
088
089 Object returnObj = null;
090
091 try {
092 returnObj = TunnelUtil.invoke(httpPrincipal, methodWrapper);
093 }
094 catch (Exception e) {
095 throw new com.liferay.portal.kernel.exception.SystemException(e);
096 }
097
098 return (com.liferay.portal.kernel.json.JSONArray)returnObj;
099 }
100 catch (com.liferay.portal.kernel.exception.SystemException se) {
101 _log.error(se, se);
102
103 throw se;
104 }
105 }
106
107 private static Log _log = LogFactoryUtil.getLog(ThemeServiceHttp.class);
108 }