1 16 17 package org.apache.jetspeed.portal.portlets; 18 19 import org.apache.jetspeed.portal.PortletException; 21 22 31 public class JspPortlet extends GenericMVCPortlet 32 { 33 34 public static final String TEMPLATE = "template"; 35 36 40 public void init() throws PortletException 41 { 42 setCacheable(false); 43 setViewType("JSP"); 44 super.init(); 45 46 } 47 48 49 } 50 | Popular Tags |