1 23 24 package com.sun.enterprise.server.event; 25 26 import com.sun.enterprise.deployment.Application; 27 28 55 public class ApplicationClientEvent extends ApplicationEvent { 56 57 62 public static final int BEFORE_APPLICATION_CLIENT_LOAD = BEFORE_APPLICATION_LOAD; 63 public static final int AFTER_APPLICATION_CLIENT_LOAD = AFTER_APPLICATION_LOAD; 64 public static final int BEFORE_APPLICATION_CLIENT_UNLOAD = BEFORE_APPLICATION_UNLOAD; 65 public static final int AFTER_APPLICATION_CLIENT_UNLOAD = AFTER_APPLICATION_UNLOAD; 66 67 public ApplicationClientEvent(int eventType, Application application, 68 ClassLoader loader) 69 { 70 super(eventType, application, loader); 71 } 72 73 public String toString() { 74 return toString(new StringBuffer ("AppClientEvent: ")); 75 } 76 77 } 78 | Popular Tags |