01: package com.nabhinc.ws.server;
02:
03: public class WebServiceLifeCycleEvent {
04: public static final int WSLCE_LOADED = 0;
05: public static final int WSLCE_UNLOADED = 1;
06: public static final int WSLCE_RELOADED = 2;
07: public static final int WSLCE_STARTED = 3;
08: public static final int WSLCE_STOPPED = 4;
09: public static final int WSLCE_DELETED = 5;
10: public String webServiceName = null;
11: public int type;
12: }
|