001
014
015 package com.liferay.portlet.messageboards.action;
016
017 import com.liferay.portlet.messageboards.model.MBCategory;
018 import com.liferay.portlet.messageboards.service.MBCategoryLocalServiceUtil;
019
020 import javax.servlet.http.HttpServletRequest;
021
022
025 public class FindCategoryAction extends FindMessageAction {
026
027 @Override
028 protected long getGroupId(long primaryKey) throws Exception {
029 MBCategory category = MBCategoryLocalServiceUtil.getCategory(
030 primaryKey);
031
032 return category.getGroupId();
033 }
034
035 @Override
036 protected String getPrimaryKeyParameterName() {
037 return "mbCategoryId";
038 }
039
040 @Override
041 protected String getStrutsAction(
042 HttpServletRequest request, String portletId) {
043
044 return "/message_boards/view";
045 }
046
047 }