001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.service.http;
016    
017    /**
018     * Provides the HTTP utility for the
019     * {@link com.liferay.portal.service.AccountServiceUtil} 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 AccountServiceSoap
041     * @see com.liferay.portal.security.auth.HttpPrincipal
042     * @see com.liferay.portal.service.AccountServiceUtil
043     * @generated
044     */
045    public class AccountServiceHttp {
046    }