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.layoutsadmin.util;
016    
017    import com.liferay.portal.kernel.exception.PortalException;
018    import com.liferay.portal.kernel.exception.SystemException;
019    import com.liferay.portal.kernel.security.pacl.permission.PortalRuntimePermission;
020    import com.liferay.portal.theme.ThemeDisplay;
021    
022    /**
023     * @author Raymond Augé
024     */
025    public class SitemapUtil {
026    
027            public static String encodeXML(String input) {
028                    return getSitemap().encodeXML(input);
029            }
030    
031            public static Sitemap getSitemap() {
032                    PortalRuntimePermission.checkGetBeanProperty(SitemapUtil.class);
033    
034                    return _sitemap;
035            }
036    
037            public static String getSitemap(
038                            long groupId, boolean privateLayout, ThemeDisplay themeDisplay)
039                    throws PortalException, SystemException {
040    
041                    return getSitemap().getSitemap(groupId, privateLayout, themeDisplay);
042            }
043    
044            public void setSitemap(Sitemap sitemap) {
045                    PortalRuntimePermission.checkSetBeanProperty(getClass());
046    
047                    _sitemap = sitemap;
048            }
049    
050            private static Sitemap _sitemap;
051    
052    }