001    /**
002     * Copyright (c) 2000-2010 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    /**
019     * <p>
020     * This class provides a HTTP utility for the
021     * {@link com.liferay.portal.service.ContactServiceUtil} service utility. The
022     * static methods of this class calls the same methods of the service utility.
023     * However, the signatures are different because it requires an additional
024     * {@link com.liferay.portal.security.auth.HttpPrincipal} parameter.
025     * </p>
026     *
027     * <p>
028     * The benefits of using the HTTP utility is that it is fast and allows for
029     * tunneling without the cost of serializing to text. The drawback is that it
030     * only works with Java.
031     * </p>
032     *
033     * <p>
034     * Set the property <b>tunnel.servlet.hosts.allowed</b> in portal.properties to
035     * configure security.
036     * </p>
037     *
038     * <p>
039     * The HTTP utility is only generated for remote services.
040     * </p>
041     *
042     * @author    Brian Wing Shun Chan
043     * @see       ContactServiceSoap
044     * @see       com.liferay.portal.security.auth.HttpPrincipal
045     * @see       com.liferay.portal.service.ContactServiceUtil
046     * @generated
047     */
048    public class ContactServiceHttp {
049    }