1 16 17 package org.apache.jetspeed.modules.actions.portlets; 18 19 import org.apache.turbine.util.RunData; 20 import org.apache.velocity.context.Context; 21 22 29 public abstract class SecureVelocityPortletAction extends VelocityPortletAction 30 { 31 38 public void executeEvents(RunData data, Context context) throws Exception  39 { 40 checkAdministrativeAction(data); 41 42 super.executeEvents(data, context); 43 } 44 } 45 | Popular Tags |