001 package railo.runtime.listener; 002 003 import railo.runtime.PageContext; 004 005 public abstract class AppListenerSupport implements ApplicationListener { 006 /*/ 007 public boolean hasOnApplicationStart(){ 008 return false; 009 }*/ 010 // FUTURE add to interface 011 public boolean hasOnSessionStart(PageContext pc){ 012 return false; 013 } 014 }