PluginSettingServiceHttp.java |
1 /** 2 * Copyright (c) 2000-2009 Liferay, Inc. All rights reserved. 3 * 4 * 5 * 6 * 7 * The contents of this file are subject to the terms of the Liferay Enterprise 8 * Subscription License ("License"). You may not use this file except in 9 * compliance with the License. You can obtain a copy of the License by 10 * contacting Liferay, Inc. See the License for the specific language governing 11 * permissions and limitations under the License, including but not limited to 12 * distribution rights of the Software. 13 * 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 20 * SOFTWARE. 21 */ 22 23 package com.liferay.portal.service.http; 24 25 import com.liferay.portal.kernel.log.Log; 26 import com.liferay.portal.kernel.log.LogFactoryUtil; 27 import com.liferay.portal.kernel.util.BooleanWrapper; 28 import com.liferay.portal.kernel.util.LongWrapper; 29 import com.liferay.portal.kernel.util.MethodWrapper; 30 import com.liferay.portal.kernel.util.NullWrapper; 31 import com.liferay.portal.security.auth.HttpPrincipal; 32 import com.liferay.portal.service.PluginSettingServiceUtil; 33 34 /** 35 * <a href="PluginSettingServiceHttp.java.html"><b><i>View Source</i></b></a> 36 * 37 * <p> 38 * ServiceBuilder generated this class. Modifications in this class will be 39 * overwritten the next time is generated. 40 * </p> 41 * 42 * <p> 43 * This class provides a HTTP utility for the 44 * {@link com.liferay.portal.service.PluginSettingServiceUtil} service utility. The 45 * static methods of this class calls the same methods of the service utility. 46 * However, the signatures are different because it requires an additional 47 * {@link com.liferay.portal.security.auth.HttpPrincipal} parameter. 48 * </p> 49 * 50 * <p> 51 * The benefits of using the HTTP utility is that it is fast and allows for 52 * tunneling without the cost of serializing to text. The drawback is that it 53 * only works with Java. 54 * </p> 55 * 56 * <p> 57 * Set the property <b>tunnel.servlet.hosts.allowed</b> in portal.properties to 58 * configure security. 59 * </p> 60 * 61 * <p> 62 * The HTTP utility is only generated for remote services. 63 * </p> 64 * 65 * @author Brian Wing Shun Chan 66 * @see PluginSettingServiceSoap 67 * @see com.liferay.portal.security.auth.HttpPrincipal 68 * @see com.liferay.portal.service.PluginSettingServiceUtil 69 * @generated 70 */ 71 public class PluginSettingServiceHttp { 72 public static com.liferay.portal.model.PluginSetting updatePluginSetting( 73 HttpPrincipal httpPrincipal, long companyId, java.lang.String pluginId, 74 java.lang.String pluginType, java.lang.String roles, boolean active) 75 throws com.liferay.portal.PortalException, 76 com.liferay.portal.SystemException { 77 try { 78 Object paramObj0 = new LongWrapper(companyId); 79 80 Object paramObj1 = pluginId; 81 82 if (pluginId == null) { 83 paramObj1 = new NullWrapper("java.lang.String"); 84 } 85 86 Object paramObj2 = pluginType; 87 88 if (pluginType == null) { 89 paramObj2 = new NullWrapper("java.lang.String"); 90 } 91 92 Object paramObj3 = roles; 93 94 if (roles == null) { 95 paramObj3 = new NullWrapper("java.lang.String"); 96 } 97 98 Object paramObj4 = new BooleanWrapper(active); 99 100 MethodWrapper methodWrapper = new MethodWrapper(PluginSettingServiceUtil.class.getName(), 101 "updatePluginSetting", 102 new Object[] { 103 paramObj0, paramObj1, paramObj2, paramObj3, paramObj4 104 }); 105 106 Object returnObj = null; 107 108 try { 109 returnObj = TunnelUtil.invoke(httpPrincipal, methodWrapper); 110 } 111 catch (Exception e) { 112 if (e instanceof com.liferay.portal.PortalException) { 113 throw (com.liferay.portal.PortalException)e; 114 } 115 116 if (e instanceof com.liferay.portal.SystemException) { 117 throw (com.liferay.portal.SystemException)e; 118 } 119 120 throw new com.liferay.portal.SystemException(e); 121 } 122 123 return (com.liferay.portal.model.PluginSetting)returnObj; 124 } 125 catch (com.liferay.portal.SystemException se) { 126 _log.error(se, se); 127 128 throw se; 129 } 130 } 131 132 private static Log _log = LogFactoryUtil.getLog(PluginSettingServiceHttp.class); 133 }