001    /**
002     * Copyright (c) 2000-present 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.softwarecatalog.action;
016    
017    import com.liferay.portal.kernel.portlet.bridges.mvc.MVCRenderCommand;
018    import com.liferay.portal.kernel.spring.osgi.OSGiBeanProperties;
019    import com.liferay.portal.util.PortletKeys;
020    
021    import javax.portlet.RenderRequest;
022    import javax.portlet.RenderResponse;
023    
024    /**
025     * @author Philip Jones
026     */
027    @OSGiBeanProperties(
028            property = {
029                    "javax.portlet.name=" + PortletKeys.SOFTWARE_CATALOG,
030                    "mvc.command.name=/software_catalog/edit_product_version"
031            }
032    )
033    public class EditProductVersionMVCRenderCommand implements MVCRenderCommand {
034    
035            @Override
036            public String render(
037                    RenderRequest renderRequest, RenderResponse renderResponse) {
038    
039                    try {
040                            ActionUtil.getProductEntry(renderRequest);
041                    }
042                    catch (Exception e) {
043                            return "/html/portlet/software_catalog/error.jsp";
044                    }
045    
046                    return "/html/portlet/software_catalog/edit_product_version.jsp";
047            }
048    
049    }