001
014
015 package com.liferay.portlet.journalarticles.action;
016
017 import com.liferay.portal.NoSuchGroupException;
018 import com.liferay.portal.kernel.util.GetterUtil;
019 import com.liferay.portal.kernel.util.StringPool;
020 import com.liferay.portal.service.GroupLocalServiceUtil;
021 import com.liferay.portlet.journalcontent.action.WebContentAction;
022
023 import javax.portlet.PortletConfig;
024 import javax.portlet.PortletPreferences;
025 import javax.portlet.RenderRequest;
026 import javax.portlet.RenderResponse;
027
028 import org.apache.struts.action.ActionForm;
029 import org.apache.struts.action.ActionForward;
030 import org.apache.struts.action.ActionMapping;
031
032
036 public class ViewAction extends WebContentAction {
037
038 @Override
039 public ActionForward render(
040 ActionMapping actionMapping, ActionForm actionForm,
041 PortletConfig portletConfig, RenderRequest renderRequest,
042 RenderResponse renderResponse)
043 throws Exception {
044
045 try {
046 PortletPreferences preferences = renderRequest.getPreferences();
047
048 long groupId = GetterUtil.getLong(
049 preferences.getValue("groupId", StringPool.BLANK));
050
051 GroupLocalServiceUtil.getGroup(groupId);
052
053 return actionMapping.findForward("portlet.journal_articles.view");
054 }
055 catch (NoSuchGroupException nsge) {
056 return actionMapping.findForward("/portal/portlet_not_setup");
057 }
058 }
059
060 }