001    /**
002     * Copyright (c) 2000-2011 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.portal.service.http;
016    
017    import com.liferay.portal.kernel.log.Log;
018    import com.liferay.portal.kernel.log.LogFactoryUtil;
019    import com.liferay.portal.kernel.util.MethodHandler;
020    import com.liferay.portal.kernel.util.MethodKey;
021    import com.liferay.portal.security.auth.HttpPrincipal;
022    import com.liferay.portal.service.LayoutRevisionServiceUtil;
023    
024    /**
025     * <p>
026     * This class provides a HTTP utility for the
027     * {@link com.liferay.portal.service.LayoutRevisionServiceUtil} service utility. The
028     * static methods of this class calls the same methods of the service utility.
029     * However, the signatures are different because it requires an additional
030     * {@link com.liferay.portal.security.auth.HttpPrincipal} parameter.
031     * </p>
032     *
033     * <p>
034     * The benefits of using the HTTP utility is that it is fast and allows for
035     * tunneling without the cost of serializing to text. The drawback is that it
036     * only works with Java.
037     * </p>
038     *
039     * <p>
040     * Set the property <b>tunnel.servlet.hosts.allowed</b> in portal.properties to
041     * configure security.
042     * </p>
043     *
044     * <p>
045     * The HTTP utility is only generated for remote services.
046     * </p>
047     *
048     * @author    Brian Wing Shun Chan
049     * @see       LayoutRevisionServiceSoap
050     * @see       com.liferay.portal.security.auth.HttpPrincipal
051     * @see       com.liferay.portal.service.LayoutRevisionServiceUtil
052     * @generated
053     */
054    public class LayoutRevisionServiceHttp {
055            public static com.liferay.portal.model.LayoutRevision addLayoutRevision(
056                    HttpPrincipal httpPrincipal, long userId, long layoutSetBranchId,
057                    long layoutBranchId, long parentLayoutRevisionId, boolean head,
058                    long plid, boolean privateLayout, java.lang.String name,
059                    java.lang.String title, java.lang.String description,
060                    java.lang.String keywords, java.lang.String robots,
061                    java.lang.String typeSettings, boolean iconImage, long iconImageId,
062                    java.lang.String themeId, java.lang.String colorSchemeId,
063                    java.lang.String wapThemeId, java.lang.String wapColorSchemeId,
064                    java.lang.String css,
065                    com.liferay.portal.service.ServiceContext serviceContext)
066                    throws com.liferay.portal.kernel.exception.PortalException,
067                            com.liferay.portal.kernel.exception.SystemException {
068                    try {
069                            MethodKey methodKey = new MethodKey(LayoutRevisionServiceUtil.class.getName(),
070                                            "addLayoutRevision", _addLayoutRevisionParameterTypes0);
071    
072                            MethodHandler methodHandler = new MethodHandler(methodKey, userId,
073                                            layoutSetBranchId, layoutBranchId, parentLayoutRevisionId,
074                                            head, plid, privateLayout, name, title, description,
075                                            keywords, robots, typeSettings, iconImage, iconImageId,
076                                            themeId, colorSchemeId, wapThemeId, wapColorSchemeId, css,
077                                            serviceContext);
078    
079                            Object returnObj = null;
080    
081                            try {
082                                    returnObj = TunnelUtil.invoke(httpPrincipal, methodHandler);
083                            }
084                            catch (Exception e) {
085                                    if (e instanceof com.liferay.portal.kernel.exception.PortalException) {
086                                            throw (com.liferay.portal.kernel.exception.PortalException)e;
087                                    }
088    
089                                    if (e instanceof com.liferay.portal.kernel.exception.SystemException) {
090                                            throw (com.liferay.portal.kernel.exception.SystemException)e;
091                                    }
092    
093                                    throw new com.liferay.portal.kernel.exception.SystemException(e);
094                            }
095    
096                            return (com.liferay.portal.model.LayoutRevision)returnObj;
097                    }
098                    catch (com.liferay.portal.kernel.exception.SystemException se) {
099                            _log.error(se, se);
100    
101                            throw se;
102                    }
103            }
104    
105            private static Log _log = LogFactoryUtil.getLog(LayoutRevisionServiceHttp.class);
106            private static final Class<?>[] _addLayoutRevisionParameterTypes0 = new Class[] {
107                            long.class, long.class, long.class, long.class, boolean.class,
108                            long.class, boolean.class, java.lang.String.class,
109                            java.lang.String.class, java.lang.String.class,
110                            java.lang.String.class, java.lang.String.class,
111                            java.lang.String.class, boolean.class, long.class,
112                            java.lang.String.class, java.lang.String.class,
113                            java.lang.String.class, java.lang.String.class,
114                            java.lang.String.class,
115                            com.liferay.portal.service.ServiceContext.class
116                    };
117    }