User: user57
Date: 02/02/24 02:24:32
Modified: src/main/org/jboss/web AbstractWebContainer.java
Log:
o moved core system from server to system (includes
all of org.jboss.system, some of org.jboss.deployment +
Main, Shutdown & Version)
o finished the integration of ServerLoader, Server and
ServerConfig are now interfaces so had to update refering
classes to use ServerConfigImplMBean
o ServerLoader changes effectivly remove the need for lib/ + lib/ext
seperation, updated build to use lib for lib/ext and updated
config files
Revision Changes Path
1.35 +3 -3 jboss/src/main/org/jboss/web/AbstractWebContainer.java
Index: AbstractWebContainer.java
===================================================================
RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/web/AbstractWebContainer.java,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- AbstractWebContainer.java 24 Feb 2002 05:04:59 -0000 1.34
+++ AbstractWebContainer.java 24 Feb 2002 10:24:32 -0000 1.35
@@ -56,7 +56,7 @@
import org.jboss.naming.Util;
import org.jboss.security.plugins.NullSecurityManager;
import org.jboss.system.ServiceMBeanSupport;
-import org.jboss.system.ServerConfigMBean;
+import org.jboss.system.server.ServerConfigImplMBean;
/** A template pattern class for web container integration into JBoss. This class
should be subclasses by web container providers wishing to integrate their
@@ -148,7 +148,7 @@
@see org.jboss.security.SecurityAssociation;
@author [EMAIL PROTECTED]
-@version $Revision: 1.34 $
+@version $Revision: 1.35 $
*/
public abstract class AbstractWebContainer
extends ServiceMBeanSupport
@@ -260,7 +260,7 @@
try
{
File systemTmpDir = (File)
- server.getAttribute(ServerConfigMBean.OBJECT_NAME, "TempDir");
+ server.getAttribute(ServerConfigImplMBean.OBJECT_NAME, "TempDir");
tmpDeployDir = new File(systemTmpDir, "deploy");
}
catch (Exception e)
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development