Skip to content

Instantly share code, notes, and snippets.

@cfalzone
Last active December 21, 2015 14:19
Show Gist options
  • Save cfalzone/6318640 to your computer and use it in GitHub Desktop.
Save cfalzone/6318640 to your computer and use it in GitHub Desktop.
package com.aquent.portlets.tools;
import javax.portlet.PortletConfig;
import javax.portlet.RenderRequest;
import javax.portlet.RenderResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import com.dotmarketing.portal.struts.DotPortletAction;
public class ViewAquentTools extends DotPortletAction {
public ActionForward render(ActionMapping mapping, ActionForm form, PortletConfig config, RenderRequest req, RenderResponse res) throws Exception {
return mapping.findForward("com.aquent.tools");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment