1 23 24 25 26 39 40 package com.sun.enterprise.config; 41 42 43 44 import java.util.EventListener ; 45 46 47 48 53 54 public interface ConfigContextEventListener extends EventListener { 55 56 57 58 63 64 void preChangeNotification(ConfigContextEvent ccce); 65 66 67 68 73 74 void postChangeNotification(ConfigContextEvent ccce); 75 76 77 78 83 84 void preAccessNotification(ConfigContextEvent ccce); 85 86 87 88 93 94 void postAccessNotification(ConfigContextEvent ccce); 95 96 } 97 98 | Popular Tags |