Index: ./com/sun/enterprise/server/DummyWebModuleManager.java =================================================================== RCS file: /cvs/glassfish/appserv-core/src/java/com/sun/enterprise/server/DummyWebModuleManager.java,v retrieving revision 1.2 diff -u -r1.2 DummyWebModuleManager.java --- ./com/sun/enterprise/server/DummyWebModuleManager.java 25 Dec 2005 04:16:19 -0000 1.2 +++ ./com/sun/enterprise/server/DummyWebModuleManager.java 16 Apr 2007 23:34:46 -0000 @@ -41,7 +41,7 @@ // This constructs makes the web modules manager available to the // super class. - DummyWebModuleManager(WebModulesManager manager, ClassLoader loader) { + protected DummyWebModuleManager(WebModulesManager manager, ClassLoader loader) { super(loader, manager); } Index: ./com/sun/enterprise/server/DummyWebModuleLoader.java =================================================================== RCS file: /cvs/glassfish/appserv-core/src/java/com/sun/enterprise/server/DummyWebModuleLoader.java,v retrieving revision 1.9 diff -u -r1.9 DummyWebModuleLoader.java --- ./com/sun/enterprise/server/DummyWebModuleLoader.java 8 Mar 2007 03:49:46 -0000 1.9 +++ ./com/sun/enterprise/server/DummyWebModuleLoader.java 16 Apr 2007 23:34:46 -0000 @@ -48,7 +48,7 @@ * Constructs a dummy loader. It generates a descriptor representing * the webapp. */ - DummyWebModuleLoader(String id, ClassLoader loader, WebModulesManager manager) { + public DummyWebModuleLoader(String id, ClassLoader loader, WebModulesManager manager) { super(id, loader, manager); try { this.application = manager.getDescriptor(id, manager.getLocation(id)); @@ -58,40 +58,44 @@ } //Dummy load. Notification is fired here. - boolean doLoad(boolean jsr77) { + public boolean doLoad(boolean jsr77) { notifyAppEvent(ApplicationEvent.BEFORE_APPLICATION_LOAD); loadWebserviceEndpoints(jsr77); notifyAppEvent(ApplicationEvent.AFTER_APPLICATION_LOAD); return true; } - boolean unload(boolean jsr77) { + public boolean unload(boolean jsr77) { unloadWebserviceEndpoints(jsr77); notifyAppEvent(ApplicationEvent.AFTER_APPLICATION_UNLOAD); return true; } - void createRootMBean () throws MBeanException { + public boolean load (boolean jsr77) { + return super.load(jsr77); } - void deleteRootMBean () throws MBeanException{ + public void createRootMBean () throws MBeanException { } - void createLeafMBeans () throws MBeanException{ + public void deleteRootMBean () throws MBeanException{ } - void deleteLeafMBeans () throws MBeanException { + public void createLeafMBeans () throws MBeanException{ } - void createLeafMBean (Descriptor descriptor) throws MBeanException { + public void deleteLeafMBeans () throws MBeanException { } - void deleteLeafMBean (Descriptor descriptor) throws MBeanException { + public void createLeafMBean (Descriptor descriptor) throws MBeanException { } - void deleteLeafAndRootMBeans () throws MBeanException { + public void deleteLeafMBean (Descriptor descriptor) throws MBeanException { } - void setState(int state) throws MBeanException { + public void deleteLeafAndRootMBeans () throws MBeanException { + } + + public void setState(int state) throws MBeanException { } }