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.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    }