Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chingovan/4b8d2637b034305fb09ea1a351003467 to your computer and use it in GitHub Desktop.
Save chingovan/4b8d2637b034305fb09ea1a351003467 to your computer and use it in GitHub Desktop.
package com.blogspot.chingovan;
import javax.portlet.ActionRequest;
import javax.portlet.ActionResponse;
import javax.portlet.PortletConfig;
import javax.portlet.RenderRequest;
import javax.portlet.RenderResponse;
import com.liferay.portal.kernel.portlet.DefaultConfigurationAction;
public class CustomConfigurationAction extends DefaultConfigurationAction {
@Override
public void processAction(PortletConfig portletConfig, ActionRequest actionRequest, ActionResponse actionResponse)
throws Exception {
// TODO Auto-generated method stub
super.processAction(portletConfig, actionRequest, actionResponse);
}
@Override
public String render(PortletConfig portletConfig, RenderRequest renderRequest, RenderResponse renderResponse)
throws Exception {
return "/html/configuration/edit_configuration.jsp";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment