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.blogs.action;
016    
017    import com.liferay.portal.kernel.image.selector.ImageSelectorUploadHandler;
018    import com.liferay.portal.struts.PortletAction;
019    import com.liferay.portlet.blogs.image.selector.EditorImageSelectorUploadHandler;
020    
021    import javax.portlet.ActionRequest;
022    import javax.portlet.ActionResponse;
023    import javax.portlet.PortletConfig;
024    
025    import org.apache.struts.action.ActionForm;
026    import org.apache.struts.action.ActionMapping;
027    
028    /**
029     * @author Roberto D??az
030     */
031    public class UploadEditorImageAction extends PortletAction {
032    
033            @Override
034            public void processAction(
035                            ActionMapping actionMapping, ActionForm actionForm,
036                            PortletConfig portletConfig, ActionRequest actionRequest,
037                            ActionResponse actionResponse)
038                    throws Exception {
039    
040                    _imageSelectorUploadHandler.uploadSelectedImage(
041                            actionRequest, actionResponse);
042            }
043    
044            private final ImageSelectorUploadHandler _imageSelectorUploadHandler =
045                    new EditorImageSelectorUploadHandler();
046    
047    }