Created
June 26, 2016 19:10
-
-
Save chingovan/4b8d2637b034305fb09ea1a351003467 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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