001    /**
002     * Copyright (c) 2000-2010 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.wiki.engines.jspwiki;
016    
017    import com.ecyrd.jspwiki.WikiException;
018    
019    import java.util.Collection;
020    import java.util.Properties;
021    
022    import javax.servlet.ServletContext;
023    
024    /**
025     * @author Jorge Ferrer
026     */
027    public class LiferayJSPWikiEngine extends com.ecyrd.jspwiki.WikiEngine {
028    
029            public LiferayJSPWikiEngine(Properties properties) throws WikiException {
030                    super(properties);
031            }
032    
033            public LiferayJSPWikiEngine(
034                            ServletContext context, String appId, Properties props)
035                    throws WikiException {
036    
037                    super(context, appId, props);
038            }
039    
040            public Collection<String> scanWikiLinks(
041                    com.ecyrd.jspwiki.WikiPage page, String pageData) {
042    
043                    return super.scanWikiLinks(page, pageData);
044            }
045    
046    }