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.tools.deploy;
016    
017    import com.liferay.portal.kernel.util.StringBundler;
018    import com.liferay.portal.model.Plugin;
019    import com.liferay.portal.util.InitUtil;
020    
021    import java.io.File;
022    
023    import java.util.ArrayList;
024    import java.util.List;
025    
026    /**
027     * @author Brian Wing Shun Chan
028     */
029    public class ExtDeployer extends BaseDeployer {
030    
031            public static void main(String[] args) {
032                    InitUtil.initWithSpring();
033    
034                    List<String> wars = new ArrayList<String>();
035                    List<String> jars = new ArrayList<String>();
036    
037                    for (String arg : args) {
038                            if (arg.endsWith(".war")) {
039                                    wars.add(arg);
040                            }
041                            else if (arg.endsWith(".jar")) {
042                                    jars.add(arg);
043                            }
044                    }
045    
046                    new ExtDeployer(wars, jars);
047            }
048    
049            public ExtDeployer() {
050            }
051    
052            public ExtDeployer(List<String> wars, List<String> jars) {
053                    super(wars, jars);
054            }
055    
056            @Override
057            public String getExtraContent(
058                            double webXmlVersion, File srcFile, String displayName)
059                    throws Exception {
060    
061                    StringBundler sb = new StringBundler(6);
062    
063                    String extraContent = super.getExtraContent(
064                            webXmlVersion, srcFile, displayName);
065    
066                    sb.append(extraContent);
067    
068                    // ExtContextListener
069    
070                    sb.append("<listener>");
071                    sb.append("<listener-class>");
072                    sb.append("com.liferay.portal.kernel.servlet.ExtContextListener");
073                    sb.append("</listener-class>");
074                    sb.append("</listener>");
075    
076                    return sb.toString();
077            }
078    
079            @Override
080            public String getPluginType() {
081                    return Plugin.TYPE_EXT;
082            }
083    
084    }