001 /** 002 * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved. 003 * 004 * The contents of this file are subject to the terms of the Liferay Enterprise 005 * Subscription License ("License"). You may not use this file except in 006 * compliance with the License. You can obtain a copy of the License by 007 * contacting Liferay, Inc. See the License for the specific language governing 008 * permissions and limitations under the License, including but not limited to 009 * distribution rights of the Software. 010 * 011 * 012 * 013 */ 014 015 package com.liferay.portlet.polls.service.http; 016 017 /** 018 * Provides the HTTP utility for the 019 * {@link com.liferay.portlet.polls.service.PollsChoiceServiceUtil} service utility. The 020 * static methods of this class calls the same methods of the service utility. 021 * However, the signatures are different because it requires an additional 022 * {@link com.liferay.portal.security.auth.HttpPrincipal} parameter. 023 * 024 * <p> 025 * The benefits of using the HTTP utility is that it is fast and allows for 026 * tunneling without the cost of serializing to text. The drawback is that it 027 * only works with Java. 028 * </p> 029 * 030 * <p> 031 * Set the property <b>tunnel.servlet.hosts.allowed</b> in portal.properties to 032 * configure security. 033 * </p> 034 * 035 * <p> 036 * The HTTP utility is only generated for remote services. 037 * </p> 038 * 039 * @author Brian Wing Shun Chan 040 * @see PollsChoiceServiceSoap 041 * @see com.liferay.portal.security.auth.HttpPrincipal 042 * @see com.liferay.portlet.polls.service.PollsChoiceServiceUtil 043 * @generated 044 */ 045 public class PollsChoiceServiceHttp { 046 }