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