001
014
015 package com.liferay.portal.service.http;
016
017 import aQute.bnd.annotation.ProviderType;
018
019 import com.liferay.portal.kernel.log.Log;
020 import com.liferay.portal.kernel.log.LogFactoryUtil;
021 import com.liferay.portal.kernel.security.auth.HttpPrincipal;
022 import com.liferay.portal.kernel.service.ThemeServiceUtil;
023 import com.liferay.portal.kernel.service.http.TunnelUtil;
024 import com.liferay.portal.kernel.util.MethodHandler;
025 import com.liferay.portal.kernel.util.MethodKey;
026
027
055 @ProviderType
056 public class ThemeServiceHttp {
057 public static java.util.List<com.liferay.portal.kernel.model.Theme> getThemes(
058 HttpPrincipal httpPrincipal, long companyId) {
059 try {
060 MethodKey methodKey = new MethodKey(ThemeServiceUtil.class,
061 "getThemes", _getThemesParameterTypes0);
062
063 MethodHandler methodHandler = new MethodHandler(methodKey, companyId);
064
065 Object returnObj = null;
066
067 try {
068 returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler);
069 }
070 catch (Exception e) {
071 throw new com.liferay.portal.kernel.exception.SystemException(e);
072 }
073
074 return (java.util.List<com.liferay.portal.kernel.model.Theme>)returnObj;
075 }
076 catch (com.liferay.portal.kernel.exception.SystemException se) {
077 _log.error(se, se);
078
079 throw se;
080 }
081 }
082
083 public static com.liferay.portal.kernel.json.JSONArray getWARThemes(
084 HttpPrincipal httpPrincipal) {
085 try {
086 MethodKey methodKey = new MethodKey(ThemeServiceUtil.class,
087 "getWARThemes", _getWARThemesParameterTypes1);
088
089 MethodHandler methodHandler = new MethodHandler(methodKey);
090
091 Object returnObj = null;
092
093 try {
094 returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler);
095 }
096 catch (Exception e) {
097 throw new com.liferay.portal.kernel.exception.SystemException(e);
098 }
099
100 return (com.liferay.portal.kernel.json.JSONArray)returnObj;
101 }
102 catch (com.liferay.portal.kernel.exception.SystemException se) {
103 _log.error(se, se);
104
105 throw se;
106 }
107 }
108
109 private static Log _log = LogFactoryUtil.getLog(ThemeServiceHttp.class);
110 private static final Class<?>[] _getThemesParameterTypes0 = new Class[] {
111 long.class
112 };
113 private static final Class<?>[] _getWARThemesParameterTypes1 = new Class[] { };
114 }